diff --git a/examples/tracing/golang-push/go.work.sum b/examples/tracing/golang-push/go.work.sum index b2a400bf17..9fe458e622 100644 --- a/examples/tracing/golang-push/go.work.sum +++ b/examples/tracing/golang-push/go.work.sum @@ -58,6 +58,8 @@ go.opentelemetry.io/otel/trace v1.31.0/go.mod h1:TXZkRk7SM2ZQLtR6eoAWQFIHPvzQ06F golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw= golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U= golang.org/x/crypto v0.30.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk= +golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U= +golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk= golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.29.0/go.mod h1:gLkgy8jTGERgjzMic6DS9+SP0ajcu6Xu3Orq/SpETg0= @@ -67,11 +69,13 @@ golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbht golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.25.0 h1:WtHI/ltw4NvSUig5KARz9h521QvRC8RmF/cuYqifU24= golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M= +golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q= golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM= golang.org/x/text v0.18.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4= diff --git a/pkg/ingester/otlp/convert.go b/pkg/ingester/otlp/convert.go index 47e3203d4d..b1dbfa659a 100644 --- a/pkg/ingester/otlp/convert.go +++ b/pkg/ingester/otlp/convert.go @@ -5,13 +5,20 @@ import ( "time" googleProfile "github.com/grafana/pyroscope/api/gen/proto/go/google/v1" + typesv1 "github.com/grafana/pyroscope/api/gen/proto/go/types/v1" otelProfile "github.com/grafana/pyroscope/api/otlp/profiles/v1development" + pyromodel "github.com/grafana/pyroscope/pkg/model" ) const serviceNameKey = "service.name" +type convertedProfile struct { + profile *googleProfile.Profile + name *typesv1.LabelPair +} + // ConvertOtelToGoogle converts an OpenTelemetry profile to a Google profile. -func ConvertOtelToGoogle(src *otelProfile.Profile) map[string]*googleProfile.Profile { +func ConvertOtelToGoogle(src *otelProfile.Profile) (map[string]convertedProfile, error) { svc2Profile := make(map[string]*profileBuilder) for _, sample := range src.Sample { svc := serviceNameFromSample(src, sample) @@ -20,17 +27,27 @@ func ConvertOtelToGoogle(src *otelProfile.Profile) map[string]*googleProfile.Pro p = newProfileBuilder(src) svc2Profile[svc] = p } - p.convertSampleBack(sample) + if _, err := p.convertSampleBack(sample); err != nil { + return nil, err + } } - result := make(map[string]*googleProfile.Profile) + result := make(map[string]convertedProfile) for svc, p := range svc2Profile { - result[svc] = p.dst + result[svc] = convertedProfile{p.dst, p.name} } - return result + return result, nil } +type sampleConversionType int + +const ( + sampleConversionTypeNone sampleConversionType = 0 + sampleConversionTypeSamplesToNanos sampleConversionType = 1 + sampleConversionTypeSumEvents sampleConversionType = 2 +) + type profileBuilder struct { src *otelProfile.Profile dst *googleProfile.Profile @@ -39,7 +56,9 @@ type profileBuilder struct { unsymbolziedFuncNameMap map[string]uint64 locationMap map[*otelProfile.Location]uint64 mappingMap map[*otelProfile.Mapping]uint64 - cpuConversion bool + + sampleProcessingTypes []sampleConversionType + name *typesv1.LabelPair } func newProfileBuilder(src *otelProfile.Profile) *profileBuilder { @@ -66,19 +85,36 @@ func newProfileBuilder(src *otelProfile.Profile) *profileBuilder { Unit: res.addstr("ms"), }} res.dst.DefaultSampleType = res.addstr("samples") - } else if len(res.dst.SampleType) == 1 && res.dst.PeriodType != nil && res.dst.Period != 0 { - profileType := fmt.Sprintf("%s:%s:%s:%s", - res.dst.StringTable[res.dst.SampleType[0].Type], - res.dst.StringTable[res.dst.SampleType[0].Unit], - res.dst.StringTable[res.dst.PeriodType.Type], - res.dst.StringTable[res.dst.PeriodType.Unit], - ) + } + res.sampleProcessingTypes = make([]sampleConversionType, len(res.dst.SampleType)) + for i := 0; i < len(res.dst.SampleType); i++ { + profileType := res.profileType(i) if profileType == "samples:count:cpu:nanoseconds" { - res.dst.SampleType = []*googleProfile.ValueType{{ + res.dst.SampleType[i] = &googleProfile.ValueType{ Type: res.addstr("cpu"), Unit: res.addstr("nanoseconds"), - }} - res.cpuConversion = true + } + if len(res.dst.SampleType) == 1 { + res.name = &typesv1.LabelPair{ + Name: pyromodel.LabelNameProfileName, + Value: "process_cpu", + } + } + res.sampleProcessingTypes[i] = sampleConversionTypeSamplesToNanos + } + // Identify off cpu profiles + if profileType == "events:nanoseconds::" && len(res.dst.SampleType) == 1 { + res.sampleProcessingTypes[i] = sampleConversionTypeSumEvents + res.name = &typesv1.LabelPair{ + Name: pyromodel.LabelNameProfileName, + Value: pyromodel.ProfileNameOffCpu, + } + } + } + if res.name == nil { + res.name = &typesv1.LabelPair{ + Name: pyromodel.LabelNameProfileName, + Value: "process_cpu", // guess } } @@ -91,6 +127,22 @@ func newProfileBuilder(src *otelProfile.Profile) *profileBuilder { return res } +func (p *profileBuilder) profileType(idx int) string { + var ( + periodType, periodUnit string + ) + if p.dst.PeriodType != nil && p.dst.Period != 0 { + periodType = p.dst.StringTable[p.dst.PeriodType.Type] + periodUnit = p.dst.StringTable[p.dst.PeriodType.Unit] + } + return fmt.Sprintf("%s:%s:%s:%s", + p.dst.StringTable[p.dst.SampleType[idx].Type], + p.dst.StringTable[p.dst.SampleType[idx].Unit], + periodType, + periodUnit, + ) +} + func (p *profileBuilder) addstr(s string) int64 { if i, ok := p.stringMap[s]; ok { return i @@ -198,16 +250,32 @@ func (p *profileBuilder) convertFunctionBack(of *otelProfile.Function) uint64 { return gf.Id } -func (p *profileBuilder) convertSampleBack(os *otelProfile.Sample) *googleProfile.Sample { +func (p *profileBuilder) convertSampleBack(os *otelProfile.Sample) (*googleProfile.Sample, error) { gs := &googleProfile.Sample{ Value: os.Value, } - if len(gs.Value) == 0 { - gs.Value = []int64{int64(len(os.TimestampsUnixNano))} - } else if len(gs.Value) == 1 && p.cpuConversion { - gs.Value[0] *= p.src.Period + return nil, fmt.Errorf("sample value is required") } + + for i, typ := range p.sampleProcessingTypes { + switch typ { + case sampleConversionTypeSamplesToNanos: + gs.Value[i] *= p.src.Period + case sampleConversionTypeSumEvents: + // For off-CPU profiles, aggregate all sample values into a single sum + // since pprof cannot represent variable-length sample values + sum := int64(0) + for _, v := range gs.Value { + sum += v + } + gs.Value = []int64{sum} + } + } + if p.dst.Period != 0 && p.dst.PeriodType != nil && len(gs.Value) != len(p.dst.SampleType) { + return nil, fmt.Errorf("sample values length mismatch %d %d", len(gs.Value), len(p.dst.SampleType)) + } + p.convertSampleAttributesToLabelsBack(os, gs) for i := os.LocationsStartIndex; i < os.LocationsStartIndex+os.LocationsLength; i++ { @@ -216,7 +284,7 @@ func (p *profileBuilder) convertSampleBack(os *otelProfile.Sample) *googleProfil p.dst.Sample = append(p.dst.Sample, gs) - return gs + return gs, nil } func (p *profileBuilder) convertSampleAttributesToLabelsBack(os *otelProfile.Sample, gs *googleProfile.Sample) { diff --git a/pkg/ingester/otlp/ingest_handler.go b/pkg/ingester/otlp/ingest_handler.go index f054dcf289..169714366b 100644 --- a/pkg/ingester/otlp/ingest_handler.go +++ b/pkg/ingester/otlp/ingest_handler.go @@ -6,10 +6,6 @@ import ( "net/http" "strings" - distirbutormodel "github.com/grafana/pyroscope/pkg/distributor/model" - pyromodel "github.com/grafana/pyroscope/pkg/model" - "github.com/grafana/pyroscope/pkg/pprof" - "connectrpc.com/connect" "github.com/go-kit/log" "github.com/go-kit/log/level" @@ -21,6 +17,9 @@ import ( typesv1 "github.com/grafana/pyroscope/api/gen/proto/go/types/v1" pprofileotlp "github.com/grafana/pyroscope/api/otlp/collector/profiles/v1development" v1 "github.com/grafana/pyroscope/api/otlp/common/v1" + distirbutormodel "github.com/grafana/pyroscope/pkg/distributor/model" + pyromodel "github.com/grafana/pyroscope/pkg/model" + "github.com/grafana/pyroscope/pkg/pprof" "github.com/grafana/pyroscope/pkg/tenant" ) @@ -97,7 +96,10 @@ func (h *ingestHandler) Export(ctx context.Context, er *pprofileotlp.ExportProfi for k := 0; k < len(sp.Profiles); k++ { p := sp.Profiles[k] - pprofProfiles := ConvertOtelToGoogle(p) + pprofProfiles, err := ConvertOtelToGoogle(p) + if err != nil { + return &pprofileotlp.ExportProfilesServiceResponse{}, fmt.Errorf("failed to convert otel profile: %w", err) + } req := &distirbutormodel.PushRequest{ RawProfileSize: p.Size(), @@ -106,7 +108,8 @@ func (h *ingestHandler) Export(ctx context.Context, er *pprofileotlp.ExportProfi for samplesServiceName, pprofProfile := range pprofProfiles { labels := getDefaultLabels() - processedKeys := make(map[string]bool) + labels = append(labels, pprofProfile.name) + processedKeys := map[string]bool{pyromodel.LabelNameProfileName: true} labels = appendAttributesUnique(labels, rp.Resource.GetAttributes(), processedKeys) labels = appendAttributesUnique(labels, sp.Scope.GetAttributes(), processedKeys) svc := samplesServiceName @@ -114,7 +117,7 @@ func (h *ingestHandler) Export(ctx context.Context, er *pprofileotlp.ExportProfi svc = serviceName } labels = append(labels, &typesv1.LabelPair{ - Name: "service_name", + Name: pyromodel.LabelNameServiceName, Value: svc, }) @@ -123,7 +126,7 @@ func (h *ingestHandler) Export(ctx context.Context, er *pprofileotlp.ExportProfi Samples: []*distirbutormodel.ProfileSample{ { RawProfile: nil, - Profile: pprof.RawFromProto(pprofProfile), + Profile: pprof.RawFromProto(pprofProfile.profile), ID: uuid.New().String(), }, }, @@ -133,7 +136,7 @@ func (h *ingestHandler) Export(ctx context.Context, er *pprofileotlp.ExportProfi if len(req.Series) == 0 { continue } - _, err := h.svc.PushParsed(ctx, req) + _, err = h.svc.PushParsed(ctx, req) if err != nil { h.log.Log("msg", "failed to push profile", "err", err) return &pprofileotlp.ExportProfilesServiceResponse{}, fmt.Errorf("failed to make a GRPC request: %w", err) @@ -163,10 +166,6 @@ func getServiceNameFromAttributes(attrs []v1.KeyValue) string { // getDefaultLabels returns the required base labels for Pyroscope profiles func getDefaultLabels() []*typesv1.LabelPair { return []*typesv1.LabelPair{ - { - Name: pyromodel.LabelNameProfileName, - Value: "process_cpu", - }, { Name: pyromodel.LabelNameDelta, Value: "false", @@ -175,10 +174,6 @@ func getDefaultLabels() []*typesv1.LabelPair { Name: pyromodel.LabelNameOTEL, Value: "true", }, - { - Name: "pyroscope_spy", - Value: "unknown", - }, } } diff --git a/pkg/ingester/otlp/ingest_handler_test.go b/pkg/ingester/otlp/ingest_handler_test.go index 1f6ffed586..785dbbc803 100644 --- a/pkg/ingester/otlp/ingest_handler_test.go +++ b/pkg/ingester/otlp/ingest_handler_test.go @@ -3,6 +3,8 @@ package otlp import ( "context" "os" + "sort" + "strings" "testing" phlaremodel "github.com/grafana/pyroscope/pkg/model" @@ -163,60 +165,166 @@ func TestAppendAttributesUnique(t *testing.T) { func readJSONFile(t *testing.T, filename string) string { data, err := os.ReadFile(filename) - require.NoError(t, err) + require.NoError(t, err, "filename: "+filename) return string(data) } -func TestSymbolizedFunctionNames(t *testing.T) { - // Create two unsymbolized locations at 0x1e0 and 0x2f0 - // Expect both of them to be present in the converted pprof - svc := mockotlp.NewMockPushService(t) - var profiles []*model.PushRequest - svc.On("PushParsed", mock.Anything, mock.Anything).Run(func(args mock.Arguments) { - c := (args.Get(1)).(*model.PushRequest) - profiles = append(profiles, c) - }).Return(nil, nil) - - otlpb := new(otlpbuilder) - otlpb.profile.MappingTable = []*v1experimental.Mapping{{ - MemoryStart: 0x1000, - MemoryLimit: 0x1000, - FilenameStrindex: otlpb.addstr("file1.so"), - }} - otlpb.profile.LocationTable = []*v1experimental.Location{{ - MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, - Address: 0x1e0, - Line: nil, - }, { - MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, - Address: 0x2f0, - Line: nil, - }} - otlpb.profile.LocationIndices = []int32{0, 1} - otlpb.profile.Sample = []*v1experimental.Sample{{ - LocationsStartIndex: 0, - LocationsLength: 2, - Value: []int64{0xef}, - }} - otlpb.profile.TimeNanos = 239 - req := &v1experimental2.ExportProfilesServiceRequest{ - ResourceProfiles: []*v1experimental.ResourceProfiles{{ - ScopeProfiles: []*v1experimental.ScopeProfiles{{ - Profiles: []*v1experimental.Profile{ - &otlpb.profile, - }}}}}} - logger := testutil.NewLogger(t) - h := NewOTLPIngestHandler(svc, logger, false) - _, err := h.Export(context.Background(), req) - assert.NoError(t, err) - assert.Equal(t, 1, len(profiles)) +func TestConversion(t *testing.T) { - gp := profiles[0].Series[0].Samples[0].Profile.Profile + testdata := []struct { + name string + expectedJsonFile string + expectedError string + profile func() *otlpbuilder + }{ + { + name: "symbolized function names", + expectedJsonFile: "testdata/TestSymbolizedFunctionNames.json", + profile: func() *otlpbuilder { + b := new(otlpbuilder) + b.profile.MappingTable = []*v1experimental.Mapping{{ + MemoryStart: 0x1000, + MemoryLimit: 0x1000, + FilenameStrindex: b.addstr("file1.so"), + }} + b.profile.LocationTable = []*v1experimental.Location{{ + MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, + Address: 0x1e0, + Line: nil, + }, { + MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, + Address: 0x2f0, + Line: nil, + }} + b.profile.LocationIndices = []int32{0, 1} + b.profile.Sample = []*v1experimental.Sample{{ + LocationsStartIndex: 0, + LocationsLength: 2, + Value: []int64{0xef}, + }} + return b + }, + }, + { + name: "offcpu", + expectedJsonFile: "testdata/TestConversionOffCpu.json", + profile: func() *otlpbuilder { + b := new(otlpbuilder) + b.profile.SampleType = []*v1experimental.ValueType{{ + TypeStrindex: b.addstr("events"), + UnitStrindex: b.addstr("nanoseconds"), + }} + b.profile.MappingTable = []*v1experimental.Mapping{{ + MemoryStart: 0x1000, + MemoryLimit: 0x1000, + FilenameStrindex: b.addstr("file1.so"), + }} + b.profile.LocationTable = []*v1experimental.Location{{ + MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, + Address: 0x1e0, + }, { + MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, + Address: 0x2f0, + }, { + MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, + Address: 0x3f0, + }} + b.profile.LocationIndices = []int32{0, 1, 2} + b.profile.Sample = []*v1experimental.Sample{{ + LocationsStartIndex: 0, + LocationsLength: 2, + Value: []int64{0xef}, + }, { + LocationsStartIndex: 2, + LocationsLength: 1, + Value: []int64{1, 2, 3, 4, 5, 6}, + }} + return b + }, + }, + { + name: "samples with different value sizes ", + expectedError: "sample values length mismatch", + profile: func() *otlpbuilder { + b := new(otlpbuilder) + b.profile.SampleType = []*v1experimental.ValueType{{ + TypeStrindex: b.addstr("wrote_type"), + UnitStrindex: b.addstr("wrong_unit"), + }} + b.profile.MappingTable = []*v1experimental.Mapping{{ + MemoryStart: 0x1000, + MemoryLimit: 0x1000, + FilenameStrindex: b.addstr("file1.so"), + }} + b.profile.LocationTable = []*v1experimental.Location{{ + MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, + Address: 0x1e0, + }, { + MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, + Address: 0x2f0, + }, { + MappingIndex_: &v1experimental.Location_MappingIndex{MappingIndex: 0}, + Address: 0x3f0, + }} + b.profile.LocationIndices = []int32{0, 1, 2} + b.profile.PeriodType = &v1experimental.ValueType{ + TypeStrindex: b.addstr("period_type"), + UnitStrindex: b.addstr("period_unit"), + AggregationTemporality: 0, + } + b.profile.Period = 100 + b.profile.Sample = []*v1experimental.Sample{{ + LocationsStartIndex: 0, + LocationsLength: 2, + Value: []int64{0xef}, + }, { + LocationsStartIndex: 2, + LocationsLength: 1, + Value: []int64{1, 2, 3, 4, 5, 6}, // should be rejected because of that + }} + return b + }, + }, + } - jsonStr, err := strprofile.Stringify(gp, strprofile.Options{}) - assert.NoError(t, err) - expectedJSON := readJSONFile(t, "testdata/TestSymbolizedFunctionNames.json") - assert.JSONEq(t, expectedJSON, jsonStr) + for _, td := range testdata { + td := td + + t.Run(td.name, func(t *testing.T) { + svc := mockotlp.NewMockPushService(t) + var profiles []*model.PushRequest + svc.On("PushParsed", mock.Anything, mock.Anything).Run(func(args mock.Arguments) { + c := (args.Get(1)).(*model.PushRequest) + profiles = append(profiles, c) + }).Return(nil, nil).Maybe() + b := td.profile() + b.profile.TimeNanos = 239 + req := &v1experimental2.ExportProfilesServiceRequest{ + ResourceProfiles: []*v1experimental.ResourceProfiles{{ + ScopeProfiles: []*v1experimental.ScopeProfiles{{ + Profiles: []*v1experimental.Profile{ + &b.profile, + }}}}}} + logger := testutil.NewLogger(t) + h := NewOTLPIngestHandler(svc, logger, false) + _, err := h.Export(context.Background(), req) + + if td.expectedError == "" { + require.NoError(t, err) + require.Equal(t, 1, len(profiles)) + + gp := profiles[0].Series[0].Samples[0].Profile.Profile + + jsonStr, err := strprofile.Stringify(gp, strprofile.Options{}) + assert.NoError(t, err) + expectedJSON := readJSONFile(t, td.expectedJsonFile) + assert.JSONEq(t, expectedJSON, jsonStr) + } else { + require.Error(t, err) + require.True(t, strings.Contains(err.Error(), td.expectedError)) + } + }) + } } @@ -320,6 +428,9 @@ func TestDifferentServiceNames(t *testing.T) { var profiles []*model.PushRequest svc.On("PushParsed", mock.Anything, mock.Anything).Run(func(args mock.Arguments) { c := (args.Get(1)).(*model.PushRequest) + for _, series := range c.Series { + sort.Sort(phlaremodel.Labels(series.Labels)) + } profiles = append(profiles, c) }).Return(nil, nil) @@ -458,9 +569,9 @@ func TestDifferentServiceNames(t *testing.T) { require.Equal(t, 3, len(profiles[0].Series)) expectedProfiles := map[string]string{ - "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"service-a\"}": "testdata/TestDifferentServiceNames_service_a_profile.json", - "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"service-b\"}": "testdata/TestDifferentServiceNames_service_b_profile.json", - "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"unknown\"}": "testdata/TestDifferentServiceNames_unknown_profile.json", + "{__delta__=\"false\", __name__=\"process_cpu\", __otel__=\"true\", service_name=\"service-a\"}": "testdata/TestDifferentServiceNames_service_a_profile.json", + "{__delta__=\"false\", __name__=\"process_cpu\", __otel__=\"true\", service_name=\"service-b\"}": "testdata/TestDifferentServiceNames_service_b_profile.json", + "{__delta__=\"false\", __name__=\"process_cpu\", __otel__=\"true\", service_name=\"unknown\"}": "testdata/TestDifferentServiceNames_unknown_profile.json", } for _, s := range profiles[0].Series { diff --git a/pkg/ingester/otlp/testdata/TestConversionOffCpu.json b/pkg/ingester/otlp/testdata/TestConversionOffCpu.json new file mode 100644 index 0000000000..7a4e2f3638 --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestConversionOffCpu.json @@ -0,0 +1,44 @@ +{ + "sample_types": [ + { + "type": "events", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x1e0", + "lines": [ + "file1.so 0x1e0[]@:0" + ], + "mapping": "0x1000-0x1000@0x0 file1.so()" + }, + { + "address": "0x2f0", + "lines": [ + "file1.so 0x2f0[]@:0" + ], + "mapping": "0x1000-0x1000@0x0 file1.so()" + } + ], + "values": "239" + }, + { + "locations": [ + { + "address": "0x3f0", + "lines": [ + "file1.so 0x3f0[]@:0" + ], + "mapping": "0x1000-0x1000@0x0 file1.so()" + } + ], + "values": "21" + } + ], + "time_nanos": "239", + "duration_nanos": "10000000000", + "period": "0" +} \ No newline at end of file diff --git a/pkg/model/labels.go b/pkg/model/labels.go index 4894983bea..1c64b51df8 100644 --- a/pkg/model/labels.go +++ b/pkg/model/labels.go @@ -43,6 +43,8 @@ const ( LabelNamePyroscopeSpy = "pyroscope_spy" labelSep = '\xfe' + + ProfileNameOffCpu = "off_cpu" // todo better name? ) // Labels is a sorted set of labels. Order has to be guaranteed upon diff --git a/pkg/test/integration/ingest_otlp_test.go b/pkg/test/integration/ingest_otlp_test.go index c79adaa7ba..65fabc0db7 100644 --- a/pkg/test/integration/ingest_otlp_test.go +++ b/pkg/test/integration/ingest_otlp_test.go @@ -42,6 +42,25 @@ var otlpTestDatas = []otlpTestData{ }, }, + { + name: "symbolized profile from otel-ebpf-profiler with offcpu enabled", + profilePath: "testdata/otel-ebpf-profiler-offcpu.pb.bin", + expectedProfiles: []expectedProfile{ + { + "process_cpu:cpu:nanoseconds:cpu:nanoseconds", + map[string]string{"service_name": "unknown"}, + "testdata/otel-ebpf-profiler-offcpu-cpu.json", + }, + { + "off_cpu:events:nanoseconds::", + map[string]string{"service_name": "unknown"}, + "testdata/otel-ebpf-profiler-offcpu.json", + }, + }, + assertMetrics: func(t *testing.T, p *PyroscopeTest) { + + }, + }, { name: "symbolized (with some help from pyroscope-ebpf profiler) profile from otel-ebpf-profiler", profilePath: "testdata/otel-ebpf-profiler-pyrosymbolized.pb.bin", @@ -97,9 +116,6 @@ func TestIngestOTLP(t *testing.T) { for _, metric := range td.expectedProfiles { - expectedBytes, err := os.ReadFile(metric.expectedJsonPath) - assert.NoError(t, err) - query := make(map[string]string) for k, v := range metric.query { query[k] = v @@ -125,6 +141,9 @@ func TestIngestOTLP(t *testing.T) { err = os.WriteFile(pprofDumpFileName, pprof, 0644) assert.NoError(t, err) + expectedBytes, err := os.ReadFile(metric.expectedJsonPath) + require.NoError(t, err) + assert.Equal(t, string(expectedBytes), actualStr) } td.assertMetrics(t, p) diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-offcpu-cpu.json b/pkg/test/integration/testdata/otel-ebpf-profiler-offcpu-cpu.json new file mode 100644 index 0000000000..36bc116ec4 --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-offcpu-cpu.json @@ -0,0 +1,51503 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void kotlin.coroutines.jvm.internal.ContinuationImpl.releaseIntercepted()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13d", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x65", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xec95b", + "lines": [ + "__GI___clock_gettime[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13205", + "lines": [ + "os::javaTimeNanos()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "boolean kotlinx.coroutines.CancellableContinuationImpl.cancel(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.parentCancelled$kotlinx_coroutines_core(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void kotlinx.coroutines.ChildContinuation.invoke(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void kotlinx.coroutines.JobSupport.notifyCancelling(kotlinx.coroutines.NodeList, java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.tryMakeCancelling(kotlinx.coroutines.Incomplete, java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x112", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.makeCancelling(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.cancelImpl$kotlinx_coroutines_core(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.JobSupport.cancelInternal(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.JobSupport.cancel(java.util.concurrent.CancellationException)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7e", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x181", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void io.grpc.internal.ClientCallImpl.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.PartialForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.ForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.ForwardingClientCall$SimpleForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.PartialForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.ForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.ForwardingClientCall$SimpleForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17f", + "lines": [ + "java.lang.Object io.grpc.kotlin.ClientCalls$rpcImpl$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x61", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "100000000" + }, + { + "locations": [ + { + "address": "0x98d61", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4eb64a", + "lines": [ + "cp_new_stat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4ec2c5", + "lines": [ + "__do_sys_newfstat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4ec2f4", + "lines": [ + "__x64_sys_newfstat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x733b", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a166", + "lines": [ + "___fxstat64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16ee5", + "lines": [ + "handleAvailable[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0xf2ca", + "lines": [ + "Java_java_io_FileInputStream_available0[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.available0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FileInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.JobKt__JobKt.ensureActive(kotlin.coroutines.CoroutineContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.JobKt.ensureActive(kotlin.coroutines.CoroutineContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f1466", + "lines": [ + "pipe_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3456", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e42d8", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4338", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6f99", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11ba99", + "lines": [ + "__GI___libc_read[]@:0", + "__GI___libc_read[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16e37", + "lines": [ + "handleRead[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x165b0", + "lines": [ + "readBytes[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean java.util.regex.Pattern.lambda$negate$7(java.util.regex.Pattern$CharPredicate, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x32", + "lines": [ + "int com.intellij.openapi.util.text.Strings.indexOf(java.lang.CharSequence, java.lang.CharSequence, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "int com.intellij.openapi.util.text.Strings.indexOf(java.lang.CharSequence, java.lang.CharSequence, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int com.intellij.openapi.util.text.Strings.indexOf(java.lang.CharSequence, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "int com.intellij.openapi.util.text.StringUtil.indexOf(java.lang.CharSequence, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.gradle.execution.GradleConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Slice.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x2d", + "lines": [ + "int java.lang.Character.codePointAt(java.lang.CharSequence, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x78", + "lines": [ + "boolean java.util.regex.Pattern$Caret.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void com.intellij.openapi.util.text.StringUtil$BombedCharSequence.check()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "com.jetbrains.python.traceBackParsers.LinkInTrace com.jetbrains.python.testing.pytest.PyTestTracebackParser.findLinkInTrace(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.jetbrains.python.run.PythonTracebackFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Start.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "boolean java.util.regex.Matcher.find(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.text.MatchResult kotlin.text.RegexKt.findNext(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "kotlin.text.MatchResult kotlin.text.RegexKt.access$findNext(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "kotlin.text.MatchResult kotlin.text.Regex.find(java.lang.CharSequence, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.text.MatchResult kotlin.text.Regex.find$default(kotlin.text.Regex, java.lang.CharSequence, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.run.KotlinConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "com.jetbrains.python.traceBackParsers.LinkInTrace com.jetbrains.python.traceBackParsers.TraceBackParserAdapter.findLinkInTrace(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.jetbrains.python.run.PythonTracebackFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "com.jetbrains.python.traceBackParsers.LinkInTrace com.jetbrains.python.traceBackParsers.TraceBackParserAdapter.findLinkInTrace(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.jetbrains.python.run.PythonTracebackFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Slice.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "com.jetbrains.python.traceBackParsers.LinkInTrace com.jetbrains.python.traceBackParsers.TraceBackParserAdapter.findLinkInTrace(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.jetbrains.python.run.PythonTracebackFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x5cbe22b612c526e6", + "lines": [ + "StubRoutines (final stubs)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.ExceptionExFilterFactory$MyFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x80", + "lines": [ + "boolean com.intellij.openapi.util.text.Strings.startsWith(java.lang.CharSequence, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "int com.intellij.openapi.util.text.Strings.indexOf(java.lang.CharSequence, java.lang.CharSequence, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "int com.intellij.openapi.util.text.Strings.indexOf(java.lang.CharSequence, java.lang.CharSequence, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int com.intellij.openapi.util.text.Strings.indexOf(java.lang.CharSequence, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "int com.intellij.openapi.util.text.StringUtil.indexOf(java.lang.CharSequence, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.gradle.execution.GradleConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "boolean java.util.regex.Pattern$Caret.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean java.util.regex.Pattern$CharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x5", + "lines": [ + "int java.lang.Character.codePointBefore(java.lang.CharSequence, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "boolean java.util.regex.Pattern$CharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean java.util.regex.Pattern.lambda$union$3(java.util.regex.Pattern$CharPredicate, java.util.regex.Pattern$CharPredicate, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$CharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "boolean java.util.regex.Pattern$Begin.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "com.intellij.openapi.util.Pair com.intellij.execution.filters.PatternBasedFileHyperlinkRawDataFinder.findMatcher(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.util.List com.intellij.execution.filters.PatternBasedFileHyperlinkRawDataFinder.find(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.util.List com.intellij.execution.filters.PatternBasedFileHyperlinkFilter.parse(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.AbstractFileHyperlinkFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "com.jetbrains.python.traceBackParsers.LinkInTrace com.jetbrains.python.traceBackParsers.TraceBackParserAdapter.findLinkInTrace(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.jetbrains.python.run.PythonTracebackFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb03", + "lines": [ + "linux-vdso.1.so 0xb03[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0xec96c", + "lines": [ + "__GI___clock_gettime[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13182", + "lines": [ + "os::javaTimeMillis()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$CharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "boolean java.util.regex.Pattern$Begin.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "boolean com.intellij.openapi.progress.impl.CoreProgressManager.sleepIfNeededToGivePriorityToAnotherThread()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean com.intellij.openapi.progress.impl.ProgressManagerImpl.runCheckCanceledHooks(com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void java.util.regex.Matcher.\u003cinit\u003e(java.util.regex.Pattern, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.util.regex.Matcher java.util.regex.Pattern.matcher(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean kotlin.text.Regex.matches(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.flyway.db.HibernateValidationFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1c1be02", + "lines": [ + "os/signal.(*signalCtx).Done[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb367", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x51a9d8", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b96f", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1223234", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487616", + "lines": [ + "runtime.madvise[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41f575", + "lines": [ + "runtime.sysUnusedOS[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42ca68", + "lines": [ + "runtime.sysUnused[]@:0", + "runtime.(*pageAlloc).scavengeOne[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42c62e", + "lines": [ + "runtime.(*pageAlloc).scavenge.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3bdb", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b998", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b956", + "lines": [ + "runtime.spanOf[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x45d473", + "lines": [ + "__kmalloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5075a1", + "lines": [ + "__d_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5076a9", + "lines": [ + "d_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50a9e9", + "lines": [ + "d_alloc_parallel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f55c4", + "lines": [ + "lookup_open.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fba6f", + "lines": [ + "open_last_lookups[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fbc88", + "lines": [ + "path_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc9de", + "lines": [ + "do_filp_open[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4defb2", + "lines": [ + "do_sys_openat2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4df474", + "lines": [ + "__x64_sys_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7377", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x42b1c3", + "lines": [ + "internal/runtime/atomic.(*Uint64).Add[]@:0", + "runtime.(*gcControllerState).update[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41e38a", + "lines": [ + "runtime.(*mcache).refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417fc4", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d2c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x43ebbe", + "lines": [ + "runtime.wbBufFlush1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x474d9d", + "lines": [ + "runtime.wbBufFlush.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47f74c", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5a05", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x429907", + "lines": [ + "runtime.addb[]@:0", + "runtime.(*gcBits).bytep[]@:0", + "runtime.(*gcBits).bitp[]@:0", + "runtime.(*mspan).markBitsForIndex[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b59ba6", + "lines": [ + "github.com/cilium/ebpf/perf.(*forwardReader).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b59f69", + "lines": [ + "github.com/cilium/ebpf/perf.(*perfEventRing).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4cdc2f", + "lines": [ + "io.ReadAtLeast[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b566b8", + "lines": [ + "io.ReadFull[]@:0", + "github.com/cilium/ebpf/perf.readRecord[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b58e5e", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b582f0", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b38998", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).RLock[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/xsync.(*RWMutex[go.shape.map[go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno]go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.SourceInfo]).RLock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f2e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1223234", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4defed", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x639293", + "lines": [ + "github.com/cilium/ebpf/internal/unix.Syscall[]@:0", + "github.com/cilium/ebpf/internal/sys.BPF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b0e45", + "lines": [ + "github.com/cilium/ebpf/internal/sys.MapLookupElem[]@:0", + "github.com/cilium/ebpf.(*Map).lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc43e", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b932", + "lines": [ + "runtime.arenaIndex[]@:0", + "runtime.spanOf[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x429408", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x429416", + "lines": [ + "runtime.typePointers.nextFast[]@:0", + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x429491", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x5172aa", + "lines": [ + "fmt.(*pp).printArg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b920", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3c40", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4c15", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b4d140", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47a678", + "lines": [ + "runtime.mapaccess2_fast64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f87", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3bc9", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4298e9", + "lines": [ + "runtime.(*gcBits).bitp[]@:0", + "runtime.(*mspan).markBitsForIndex[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x5125f2", + "lines": [ + "fmt.(*fmt).fmtInteger[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x515288", + "lines": [ + "fmt.(*pp).fmtInteger[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x517924", + "lines": [ + "fmt.(*pp).printValue[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x51743a", + "lines": [ + "fmt.(*pp).printArg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b41696", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b989", + "lines": [ + "runtime.(*mSpanStateBox).get[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4320ff", + "lines": [ + "runtime.(*mheap).tryAllocMSpan[]@:0", + "runtime.(*mheap).allocSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x431c5b", + "lines": [ + "runtime.(*mheap).alloc.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb11", + "lines": [ + "linux-vdso.1.so 0xb11[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48782d", + "lines": [ + "time.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x418144", + "lines": [ + "runtime.deductAssistCredit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x5156a5", + "lines": [ + "fmt.(*pp).fmtString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5172c5", + "lines": [ + "fmt.(*pp).printArg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x487057", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x416b28", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416a73", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42fb37", + "lines": [ + "runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func3[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x48acee", + "lines": [ + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b8aab8", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).hashToBucketPos[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).hashToPos[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).findKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b89ec4", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b8a144", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b95864", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getMethod[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93ba4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x432258", + "lines": [ + "internal/runtime/atomic.(*Bool).Load[]@:0", + "runtime.(*gcCPULimiterState).limiting[]@:0", + "runtime.(*mheap).allocSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x431c5b", + "lines": [ + "runtime.(*mheap).alloc.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x12435e0", + "lines": [ + "_raw_spin_unlock_irqrestore[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18d5c8", + "lines": [ + "__wake_up_sync_key[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f19db", + "lines": [ + "pipe_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3fa2", + "lines": [ + "vfs_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4468", + "lines": [ + "ksys_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e44c8", + "lines": [ + "__x64_sys_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x553d", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dc4fa", + "lines": [ + "syscall.write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fe1d3", + "lines": [ + "syscall.Write[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x507c70", + "lines": [ + "os.(*File).write[]@:0", + "os.(*File).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513ef6", + "lines": [ + "fmt.Fprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d308e", + "lines": [ + "fmt.Printf[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x432877", + "lines": [ + "runtime.(*mheap).initSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43243c", + "lines": [ + "runtime.(*mheap).allocSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x431c5b", + "lines": [ + "runtime.(*mheap).alloc.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b58664", + "lines": [ + "sync.(*Mutex).Unlock[]@:0", + "github.com/cilium/ebpf/perf.(*Reader).ReadInto.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b58487", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b44302", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x41d049", + "lines": [ + "runtime.(*mspan).writeHeapBitsSmall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41d2ea", + "lines": [ + "runtime.heapSetType[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477f0e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd653a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.New[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b994", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x49a6e0", + "lines": [ + "strconv.formatBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49a36e", + "lines": [ + "strconv.AppendUint[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3b64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x49a28a", + "lines": [ + "strconv.AppendUint[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3b64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb03", + "lines": [ + "linux-vdso.1.so 0xb03[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48722c", + "lines": [ + "runtime.nanotime1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ec6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6eb", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b989", + "lines": [ + "runtime.(*mSpanStateBox).get[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47a5f7", + "lines": [ + "runtime.mapaccess2_fast64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6837", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b4d144", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4294b3", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x524c6b", + "lines": [ + "simple_lookup[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fba6f", + "lines": [ + "open_last_lookups[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fbc88", + "lines": [ + "path_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc9de", + "lines": [ + "do_filp_open[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4defb2", + "lines": [ + "do_sys_openat2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4df474", + "lines": [ + "__x64_sys_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7377", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x42944e", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x49a2ee", + "lines": [ + "strconv.AppendUint[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3b64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3be6", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x8637df", + "lines": [ + "_copy_to_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x313692", + "lines": [ + "map_lookup_elem[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31544b", + "lines": [ + "__sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x315da9", + "lines": [ + "__x64_sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6df5", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4defed", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x639293", + "lines": [ + "github.com/cilium/ebpf/internal/unix.Syscall[]@:0", + "github.com/cilium/ebpf/internal/sys.BPF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b0e45", + "lines": [ + "github.com/cilium/ebpf/internal/sys.MapLookupElem[]@:0", + "github.com/cilium/ebpf.(*Map).lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x49fbee", + "lines": [ + "sync.(*Mutex).Unlock[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc476", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4382a2", + "lines": [ + "runtime.(*pallocBits).summarize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x436875", + "lines": [ + "runtime.(*pageAlloc).free[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x432ea7", + "lines": [ + "runtime.(*mheap).freeSpanLocked[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42fb48", + "lines": [ + "runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func3[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3bef", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b44493", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x6329e2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsHex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x632d96", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsLowerHex[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifierTo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d223e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifier[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb03", + "lines": [ + "linux-vdso.1.so 0xb03[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48783f", + "lines": [ + "time.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4298e9", + "lines": [ + "runtime.(*gcBits).bitp[]@:0", + "runtime.(*mspan).markBitsForIndex[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x44f212", + "lines": [ + "runtime.save[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44f2cf", + "lines": [ + "runtime.reentersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d69e", + "lines": [ + "runtime.entersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de144", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dc4fa", + "lines": [ + "syscall.write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fe1d3", + "lines": [ + "syscall.Write[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x507c70", + "lines": [ + "os.(*File).write[]@:0", + "os.(*File).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513ef6", + "lines": [ + "fmt.Fprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d308e", + "lines": [ + "fmt.Printf[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x44246a", + "lines": [ + "runtime.popDefer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4427c7", + "lines": [ + "runtime.deferreturn[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2477", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x48a7ce", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x477e05", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3c28", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xadb1f4", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*Sample).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xad8b38", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*Profile).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xad7def", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*ScopeProfiles).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xad78ef", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*ResourceProfiles).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xae9d0e", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*ExportProfilesServiceRequest).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xae9b4c", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*ExportProfilesServiceRequest).Marshal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x769e51", + "lines": [ + "google.golang.org/protobuf/internal/impl.legacyMarshal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x7035e2", + "lines": [ + "google.golang.org/protobuf/proto.MarshalOptions.size[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x70348b", + "lines": [ + "google.golang.org/protobuf/proto.MarshalOptions.Size[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa36a19", + "lines": [ + "google.golang.org/grpc/encoding/proto.(*codecV2).Marshal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa90289", + "lines": [ + "google.golang.org/grpc.encode[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xaa9ce4", + "lines": [ + "google.golang.org/grpc.prepareMsg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xaa3130", + "lines": [ + "google.golang.org/grpc.(*clientStream).SendMsg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa8367e", + "lines": [ + "google.golang.org/grpc.invoke[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa8355e", + "lines": [ + "google.golang.org/grpc.(*ClientConn).Invoke[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xae9a84", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*profilesServiceClient).Export[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b41c66", + "lines": [ + "go.opentelemetry.io/collector/pdata/pprofile/pprofileotlp.(*grpcClient).Export[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4673d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46364", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b479fb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x41b83a", + "lines": [ + "runtime.mapaccess1_faststr[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d15", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3bb9", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b98e", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x43e773", + "lines": [ + "runtime.(*consistentHeapStats).release[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41e2f0", + "lines": [ + "runtime.(*mcache).refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417fc4", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d2c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4bc0b5", + "lines": [ + "mod_memcg_state[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4bc10c", + "lines": [ + "memcg_account_kmem[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c16fd", + "lines": [ + "obj_cgroup_charge[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45ef9d", + "lines": [ + "kmem_cache_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e599f", + "lines": [ + "alloc_empty_file[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fbc36", + "lines": [ + "path_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc9de", + "lines": [ + "do_filp_open[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4defb2", + "lines": [ + "do_sys_openat2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4df474", + "lines": [ + "__x64_sys_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7377", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x533b98", + "lines": [ + "bytes.(*Reader).ReadByte[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b94734", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*unsigned5Decoder).getUint[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93b16", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b931d5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b939a5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b9fd", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487056", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391b0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x49fbae", + "lines": [ + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391f0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x48674e", + "lines": [ + "runtime.memmove[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519c64", + "lines": [ + "fmt.(*buffer).writeString[]@:0", + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47a584", + "lines": [ + "runtime.mapaccess2_fast64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f87", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x40d4c4", + "lines": [ + "indexbytebody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48ac4a", + "lines": [ + "internal/stringslite.IndexByte[]@:0", + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x42e6a2", + "lines": [ + "internal/runtime/atomic.(*Uint32).CompareAndSwap[]@:0", + "runtime.(*activeSweep).begin[]@:0", + "runtime.sweepone[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42e51e", + "lines": [ + "runtime.bgsweep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x422bc4", + "lines": [ + "runtime.gcenable.gowrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x44d6f9", + "lines": [ + "runtime.(*randomEnum).next[]@:0", + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b4449a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b3a295", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).setHead[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).getAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x49fbee", + "lines": [ + "sync.(*Mutex).Unlock[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc549", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3e25", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Set[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7f42", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4837c5", + "lines": [ + "runtime.gogo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c3be", + "lines": [ + "runtime.execute[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e3bb", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3be9", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b4400a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43fa8", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x42e6f6", + "lines": [ + "runtime.sweepone[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42e51e", + "lines": [ + "runtime.bgsweep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x422bc4", + "lines": [ + "runtime.gcenable.gowrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x41d083", + "lines": [ + "runtime.(*mspan).writeHeapBitsSmall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41d2ea", + "lines": [ + "runtime.heapSetType[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477f0e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93a48", + "lines": [ + "bytes.NewReader[]@:0", + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x50c171", + "lines": [ + "os.Stat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47809b", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3bec", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47b998", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86393b", + "lines": [ + "_copy_from_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f0831", + "lines": [ + "vmemdup_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3135f8", + "lines": [ + "map_lookup_elem[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31544b", + "lines": [ + "__sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x315da9", + "lines": [ + "__x64_sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6df5", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4defed", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x639293", + "lines": [ + "github.com/cilium/ebpf/internal/unix.Syscall[]@:0", + "github.com/cilium/ebpf/internal/sys.BPF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b0e45", + "lines": [ + "github.com/cilium/ebpf/internal/sys.MapLookupElem[]@:0", + "github.com/cilium/ebpf.(*Map).lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x47fc60", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bcc875", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).addWithLifetime[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcc624", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcad84", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x477cc2", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22b2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4857de", + "lines": [ + "runtime.memhash64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47a5c3", + "lines": [ + "runtime.mapaccess2_fast64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6837", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1bd3c3a", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b3b0eb", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).findKeyNoExpire[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b3a204", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).getAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xbc81", + "lines": [ + "libxcb.so.1.1.0 0xbc81[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xccbc", + "lines": [ + "libxcb.so.1.1.0 0xccbc[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44ae8", + "lines": [ + "_XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x1f885", + "lines": [ + "XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x0", + "lines": [ + "void sun.awt.X11.XlibWrapper.XFlush(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9c", + "lines": [ + "void sun.awt.GlobalCursorManager._updateCursor(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void sun.awt.GlobalCursorManager.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.X11.XComponentPeer.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.awt.Component.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "com.intellij.util.text.ImmutableText$InnerLeaf com.intellij.util.text.ImmutableText.findLeaf(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "char com.intellij.util.text.ImmutableText.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.openapi.util.text.LineTokenizer.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "com.intellij.openapi.editor.impl.LineSet com.intellij.openapi.editor.impl.LineSet.createLineSet(java.lang.CharSequence, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "com.intellij.openapi.editor.impl.LineSet com.intellij.openapi.editor.impl.LineSet.genericUpdate(int, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.editor.impl.LineSet com.intellij.openapi.editor.impl.LineSet.update(java.lang.CharSequence, int, int, java.lang.CharSequence, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4", + "lines": [ + "javax.swing.RepaintManager javax.swing.RepaintManager.currentManager(sun.awt.AppContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "javax.swing.RepaintManager javax.swing.RepaintManager.currentManager(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "javax.swing.RepaintManager javax.swing.RepaintManager.currentManager(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xdf", + "lines": [ + "java.lang.CharSequence com.intellij.util.text.ImmutableText.concatNodes(java.lang.CharSequence, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc", + "lines": [ + "java.lang.CharSequence com.intellij.util.text.ImmutableText.concatNodes(java.lang.CharSequence, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "com.intellij.util.text.ImmutableText com.intellij.util.text.ImmutableText.concat(com.intellij.util.text.ImmutableText)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "com.intellij.util.text.ImmutableText com.intellij.util.text.ImmutableText.insert(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "com.intellij.util.text.ImmutableCharSequence com.intellij.util.text.ImmutableText.insert(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x88", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x24", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.lambda$containsAny$0(java.util.List, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings$$Lambda+\u003chidden\u003e.value(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.containsAny(java.lang.String, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.shouldFoldLine(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean com.intellij.execution.console.SubstringConsoleFolding.shouldFoldLine(com.intellij.openapi.project.Project, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b3c8bab09f51eab", + "lines": [ + "_new_array_nozero_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "com.intellij.execution.ConsoleFolding com.intellij.execution.impl.ConsoleViewImpl.foldingForLine(java.util.List, int, com.intellij.openapi.editor.Document)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xac", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.lambda$updateFoldings$18(com.intellij.openapi.editor.Editor, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.FoldingModel.runBatchFoldingOperation(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.updateFoldings(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.highlightHyperlinksAndFoldings(int, com.intellij.openapi.util.Expirable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x282", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.ForkJoinPool.unmanagedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void java.util.concurrent.ForkJoinPool.managedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "java.awt.AWTEvent java.awt.EventQueue.getNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.awt.AWTEvent com.intellij.ide.IdeEventQueue.getNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x9f6e09", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.event.AdjustmentEvent.\u003cinit\u003e(java.awt.Adjustable, int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void javax.swing.JScrollBar.fireAdjustmentValueChanged(int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "void javax.swing.JScrollBar$ModelListener.stateChanged(javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "void com.intellij.ui.components.JBScrollBar$Model.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.setRangeProperties(int, int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void javax.swing.JScrollBar.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "void com.intellij.ui.components.JBScrollBar.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl._scrollVertically(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable.lambda$new$0(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable$$Lambda+\u003chidden\u003e.accept(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.util.animation.Animation.update(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11c", + "lines": [ + "void com.intellij.util.animation.JBAnimator$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x324", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.util.ArrayList.forEach(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "int com.intellij.openapi.editor.impl.view.VisualLinesIterator$Location.getNextVisualLineStartOffset(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.view.VisualLinesIterator$Location.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void com.intellij.openapi.editor.impl.view.VisualLinesIterator.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "com.intellij.util.IntPair com.intellij.openapi.editor.impl.view.EditorSizeManager.calculateTextPreferredWidth(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorSizeManager.getTextPreferredWidth()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorSizeManager.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.lambda$getPreferredSize$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.view.EditorView$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.lambda$getPreferredSize$53()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorComponentImpl.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cb", + "lines": [ + "void com.intellij.ui.components.JBScrollPane$Layout.layoutContainer(java.awt.Container)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.Container.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.lambda$layout$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void java.awt.Container.doLayout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Object, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "java.awt.Container javax.swing.BufferStrategyPaintManager.fetchRoot(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.\u003cinit\u003e(char[], int, int, com.intellij.openapi.editor.impl.FontInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe5", + "lines": [ + "void com.intellij.openapi.editor.impl.view.TextFragmentFactory.createTextFragments(java.util.List, char[], int, int, boolean, com.intellij.openapi.editor.impl.FontInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout.addTextFragmentIfNeeded(com.intellij.openapi.editor.impl.view.LineLayout$Chunk, char[], int, int, com.intellij.openapi.editor.impl.FontInfo, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout.addFragmentsNoTabs(com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, com.intellij.openapi.editor.impl.view.LineLayout$Chunk, char[], int, int, com.intellij.openapi.editor.impl.FontFallbackIterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout.addFragments(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, com.intellij.openapi.editor.impl.view.LineLayout$Chunk, char[], int, int, com.intellij.openapi.editor.impl.view.TabFragment, boolean, com.intellij.openapi.editor.impl.FontFallbackIterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout$Chunk.ensureLayout(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LineLayout$VisualOrderIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintLineFragments(com.intellij.openapi.editor.impl.view.VisualLinesIterator, int, com.intellij.openapi.editor.impl.view.EditorPainter$LineFragmentPainter, com.intellij.openapi.editor.impl.view.EditorPainter$Session$MarginWidthConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "java.lang.String com.jetbrains.rdserver.lux.services.LuxFontLayoutService.a(int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean java.awt.Color.equals(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean java.util.Objects.equals(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "boolean com.intellij.openapi.editor.markup.AttributesFlyweight$FlyweightKey.equals(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe5", + "lines": [ + "void com.intellij.openapi.editor.impl.view.TextFragmentFactory.createTextFragments(java.util.List, char[], int, int, boolean, com.intellij.openapi.editor.impl.FontInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout.addTextFragmentIfNeeded(com.intellij.openapi.editor.impl.view.LineLayout$Chunk, char[], int, int, com.intellij.openapi.editor.impl.FontInfo, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout.addFragmentsNoTabs(com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, com.intellij.openapi.editor.impl.view.LineLayout$Chunk, char[], int, int, com.intellij.openapi.editor.impl.FontFallbackIterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout.addFragments(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, com.intellij.openapi.editor.impl.view.LineLayout$Chunk, char[], int, int, com.intellij.openapi.editor.impl.view.TabFragment, boolean, com.intellij.openapi.editor.impl.FontFallbackIterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout$Chunk.ensureLayout(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LineLayout$VisualOrderIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintLineFragments(com.intellij.openapi.editor.impl.view.VisualLinesIterator, int, com.intellij.openapi.editor.impl.view.EditorPainter$LineFragmentPainter, com.intellij.openapi.editor.impl.view.EditorPainter$Session$MarginWidthConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.editor.impl.IntervalTreeImpl$1.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean com.intellij.openapi.editor.ex.MarkupIterator$2.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean com.intellij.openapi.editor.impl.MarkupModelImpl.processRangeHighlightersOverlappingWith(int, int, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintHighlightersAfterEndOfLine(com.intellij.openapi.editor.ex.MarkupModelEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x95", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.fileEditor.impl.EditorTabs.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4", + "lines": [ + "int sun.java2d.loops.SurfaceType.hashCode()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.util.Objects.hashCode(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "int java.lang.invoke.LambdaForm$MH+0x00000008002a8800.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "int java.lang.invoke.LambdaForm$MH+0x00000008004a4c00.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.lang.invoke.LambdaForm$MH+0x00000008004a8000.linkToTargetMethod(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "int sun.java2d.loops.RenderCache$Key.hashCode()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.util.HashMap.hash(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object java.util.LinkedHashMap.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object sun.java2d.loops.RenderCache.get(sun.java2d.loops.SurfaceType, sun.java2d.loops.CompositeType, sun.java2d.loops.SurfaceType)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "sun.java2d.loops.Blit sun.java2d.loops.Blit.getFromCache(sun.java2d.loops.SurfaceType, sun.java2d.loops.CompositeType, sun.java2d.loops.SurfaceType)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "boolean sun.java2d.pipe.ValidatePipe.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf2", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x48", + "lines": [ + "com.intellij.openapi.editor.impl.FontInfo com.intellij.openapi.editor.impl.ComplementaryFontsRegistry.doGetFontAbleToDisplay(int, float, int, java.lang.String, java.lang.String, java.lang.String, boolean, java.awt.font.FontRenderContext, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "com.intellij.openapi.editor.impl.FontInfo com.intellij.openapi.editor.impl.ComplementaryFontsRegistry.getFontAbleToDisplay(int, int, com.intellij.openapi.editor.colors.FontPreferences, java.awt.font.FontRenderContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "com.intellij.openapi.editor.impl.FontInfo com.intellij.openapi.editor.impl.ComplementaryFontsRegistry.getFontAbleToDisplay(char[], int, int, int, com.intellij.openapi.editor.colors.FontPreferences, java.awt.font.FontRenderContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "com.intellij.openapi.editor.impl.FontInfo com.intellij.openapi.editor.impl.FontFallbackIterator.getFontAbleToDisplay(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.openapi.editor.impl.FontFallbackIterator.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.FontFallbackIterator.doStart(java.lang.CharSequence, char[], java.text.CharacterIterator, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.openapi.editor.impl.FontFallbackIterator.start(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout.addFragmentsNoTabs(com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, com.intellij.openapi.editor.impl.view.LineLayout$Chunk, char[], int, int, com.intellij.openapi.editor.impl.FontFallbackIterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout.addFragments(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, com.intellij.openapi.editor.impl.view.LineLayout$Chunk, char[], int, int, com.intellij.openapi.editor.impl.view.TabFragment, boolean, com.intellij.openapi.editor.impl.FontFallbackIterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout$Chunk.ensureLayout(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LineLayout$VisualOrderIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintLineFragments(com.intellij.openapi.editor.impl.view.VisualLinesIterator, int, com.intellij.openapi.editor.impl.view.EditorPainter$LineFragmentPainter, com.intellij.openapi.editor.impl.view.EditorPainter$Session$MarginWidthConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x9b", + "lines": [ + "io.opentelemetry.sdk.metrics.internal.aggregator.AggregatorHandle io.opentelemetry.sdk.metrics.internal.state.DefaultSynchronousMetricStorage.getAggregatorHandle(java.util.concurrent.ConcurrentHashMap, io.opentelemetry.api.common.Attributes, io.opentelemetry.context.Context)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.opentelemetry.sdk.metrics.internal.state.DefaultSynchronousMetricStorage.recordLong(long, io.opentelemetry.api.common.Attributes, io.opentelemetry.context.Context)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void io.opentelemetry.sdk.metrics.internal.state.MultiWritableMetricStorage.recordLong(long, io.opentelemetry.api.common.Attributes, io.opentelemetry.context.Context)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "void io.opentelemetry.sdk.metrics.SdkLongCounter.add(long, io.opentelemetry.api.common.Attributes, io.opentelemetry.context.Context)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.opentelemetry.sdk.metrics.SdkLongCounter.add(long, io.opentelemetry.api.common.Attributes)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.opentelemetry.sdk.metrics.SdkLongCounter.add(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void com.intellij.diagnostic.OtelReportingEventWatcher.edtEventFinished(java.awt.AWTEvent, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.diagnostic.CompositeEventWatcher.edtEventFinished(java.awt.AWTEvent, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b4", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x25", + "lines": [ + "boolean com.intellij.ide.IdeEventQueue.dispatchByCustomDispatchers(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe3", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.stream.ForEachOps$ForEachOp$OfRef.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.util.stream.DistinctOps$1$2.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.util.stream.ReferencePipeline$2$1.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void java.util.stream.ReferencePipeline$3$1.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void java.util.IdentityHashMap$KeySpliterator.forEachRemaining(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapAndCopyInto(java.util.stream.Sink, java.util.Spliterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Void java.util.stream.ForEachOps$ForEachOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "java.lang.Object java.util.stream.AbstractPipeline.evaluate(java.util.stream.TerminalOp)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void java.util.stream.ReferencePipeline.forEach(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.RepaintManager.updateWindows(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xba", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x24", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.lambda$containsAny$0(java.util.List, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings$$Lambda+\u003chidden\u003e.value(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.containsAny(java.lang.String, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.shouldFoldLine(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean com.intellij.execution.console.SubstringConsoleFolding.shouldFoldLine(com.intellij.openapi.project.Project, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "com.intellij.execution.ConsoleFolding com.intellij.execution.impl.ConsoleViewImpl.foldingForLine(java.util.List, int, com.intellij.openapi.editor.Document)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xac", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.lambda$updateFoldings$18(com.intellij.openapi.editor.Editor, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.FoldingModel.runBatchFoldingOperation(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.updateFoldings(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.highlightHyperlinksAndFoldings(int, com.intellij.openapi.util.Expirable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x282", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean sun.font.TrueTypeGlyphMapper.charsToGlyphsNS(int, char[], int[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "boolean sun.font.GlyphList.mapChars(sun.java2d.loops.FontInfo, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "boolean sun.font.GlyphList.setFromChars(sun.java2d.loops.FontInfo, char[], int, int, float, float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa4", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.util.ArrayList.forEach(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean java.util.stream.StreamSpliterators$AbstractWrappingSpliterator.doAdvance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "boolean java.util.stream.StreamSpliterators$WrappingSpliterator.tryAdvance(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean java.util.Spliterators$1Adapter.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x54", + "lines": [ + "sun.awt.X11GraphicsDevice sun.awt.X11.XInputMethod.findClosestScreenToPoint(java.awt.Rectangle, java.awt.Point, sun.awt.X11GraphicsDevice[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17b", + "lines": [ + "void sun.awt.X11.XInputMethod.updateCandidatesNativeWindowPosition(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker.updateImCandidatesNativeWindowPosition(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker.lambda$onDispatchEvent$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xfb39c9", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x9bcc2", + "lines": [ + "__condvar_dec_grefs[]@:0", + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9", + "lines": [ + "int java.util.concurrent.FutureTask.awaitDone(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object java.util.concurrent.FutureTask.get(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.access$flush(com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex.force()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.storage.VfsAwareMapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.CompositeInvertedIndex.flushSecondaryIndex()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher$IndexFlushingState.tryFlushIfNeeded(com.intellij.util.indexing.IndexConfiguration, com.intellij.openapi.util.IntRef, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher.flushAsMuchAsPossibleWithinQuota(com.intellij.openapi.util.IntRef)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.util.io.GentleFlusherBase.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "java.lang.CharSequence com.intellij.openapi.util.text.StringUtilRt.unifyLineSeparators(java.lang.CharSequence, java.lang.String, int[], boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.lang.String com.intellij.openapi.util.text.StringUtilRt.convertLineSeparators(java.lang.String, java.lang.String, int[], boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.String com.intellij.openapi.util.text.StringUtilRt.convertLineSeparators(java.lang.String, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.String com.intellij.openapi.util.text.Strings.convertLineSeparators(java.lang.String, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.print(java.lang.String, com.intellij.execution.ui.ConsoleViewContentType, com.intellij.execution.filters.HyperlinkInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.print(java.lang.String, com.intellij.execution.ui.ConsoleViewContentType)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState.print(java.lang.String, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1.lambda$onTextAvailable$0(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f", + "lines": [ + "void com.intellij.execution.impl.ProcessStreamsSynchronizer.doWhenStreamsSynchronized(java.lang.String, com.intellij.execution.process.ProcessOutputType, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1.onTextAvailable(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void com.intellij.execution.process.ProcessHandler$2.onTextAvailable(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.execution.process.ProcessHandler.notifyTextAvailable(java.lang.String, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.execution.process.BaseOSProcessHandler$SimpleOutputReader.onTextAvailable(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb1", + "lines": [ + "void com.intellij.util.io.BaseOutputReader.processInput(char[], java.lang.StringBuilder, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner kotlinx.coroutines.debug.internal.DebugProbesImpl.owner(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core.putImpl(java.lang.Object, java.lang.Object, kotlinx.coroutines.debug.internal.HashedWeakRef)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core.putImpl$default(kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core, java.lang.Object, java.lang.Object, kotlinx.coroutines.debug.internal.HashedWeakRef, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.remove(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean kotlinx.coroutines.EventLoopImplBase.enqueueImpl(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.EventLoopImplBase.enqueue(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.EventLoopImplBase.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "void kotlinx.coroutines.internal.DispatchedContinuationKt.resumeCancellableWith(kotlin.coroutines.Continuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.intrinsics.CancellableKt.startCoroutineCancellable(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.intrinsics.CancellableKt.startCoroutineCancellable$default(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlinx.coroutines.CoroutineDispatcher.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb7", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x2e6253", + "lines": [ + "AccessInternal::PostRuntimeDispatch::oop_access_barrier(void*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3980", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x23", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.remove(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.util.ChannelInputStream$read$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x20", + "lines": [ + "void io.grpc.internal.StatsTraceContext.inboundMessage(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "void io.grpc.internal.MessageDeframer.processHeader()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void io.grpc.internal.MessageDeframer.deliver()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void io.grpc.internal.MessageDeframer.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState$1RequestRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x100524e", + "lines": [ + "tcp_rate_gen[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfe78ad", + "lines": [ + "tcp_ack[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfe96f7", + "lines": [ + "tcp_rcv_established[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xffc358", + "lines": [ + "tcp_v4_do_rcv[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xffe7b9", + "lines": [ + "tcp_v4_rcv[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfbe4ab", + "lines": [ + "ip_protocol_deliver_rcu[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfbe706", + "lines": [ + "ip_local_deliver_finish[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfbe7ad", + "lines": [ + "ip_local_deliver[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfbedb9", + "lines": [ + "ip_rcv[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf01d60", + "lines": [ + "__netif_receive_skb_one_core[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf01de4", + "lines": [ + "__netif_receive_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf0205d", + "lines": [ + "process_backlog[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf02c1f", + "lines": [ + "__napi_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf03200", + "lines": [ + "net_rx_action[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x109f37", + "lines": [ + "handle_softirqs[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1244acf", + "lines": [ + "__do_softirq[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x109c30", + "lines": [ + "do_softirq.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10a331", + "lines": [ + "__local_bh_enable_ip[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xeffb47", + "lines": [ + "__dev_queue_xmit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc2352", + "lines": [ + "neigh_hh_output[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc2ba3", + "lines": [ + "ip_finish_output2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc3ae5", + "lines": [ + "__ip_finish_output[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc3be8", + "lines": [ + "ip_finish_output[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc3d4e", + "lines": [ + "ip_output[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc53a0", + "lines": [ + "ip_local_out[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc554d", + "lines": [ + "__ip_queue_xmit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc58c4", + "lines": [ + "ip_queue_xmit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfefc15", + "lines": [ + "__tcp_transmit_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xff0a07", + "lines": [ + "__tcp_send_ack.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xff3ecb", + "lines": [ + "tcp_send_ack[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd78b7", + "lines": [ + "__tcp_cleanup_rbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd7955", + "lines": [ + "tcp_cleanup_rbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd8520", + "lines": [ + "tcp_recvmsg_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd9be3", + "lines": [ + "tcp_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1085983", + "lines": [ + "inet6_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4852", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec742a", + "lines": [ + "__sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec7503", + "lines": [ + "__x64_sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6fb7", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bc19", + "lines": [ + "__libc_recv[]@:0", + "__libc_recv[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xb58e", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0xb58e[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel.doReadBytes(io.grpc.netty.shaded.io.netty.buffer.ByteBuf)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4c5f", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4c5f[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x511e01", + "lines": [ + "__fdget[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec2d46", + "lines": [ + "sockfd_lookup_light[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec73fa", + "lines": [ + "__sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec7503", + "lines": [ + "__x64_sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6fb7", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bc19", + "lines": [ + "__libc_recv[]@:0", + "__libc_recv[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xb58e", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0xb58e[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel.doReadBytes(io.grpc.netty.shaded.io.netty.buffer.ByteBuf)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xfd85bf", + "lines": [ + "tcp_recvmsg_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd9be3", + "lines": [ + "tcp_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1085983", + "lines": [ + "inet6_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4852", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec742a", + "lines": [ + "__sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec7503", + "lines": [ + "__x64_sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6fb7", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bc19", + "lines": [ + "__libc_recv[]@:0", + "__libc_recv[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xb58e", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0xb58e[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel.doReadBytes(io.grpc.netty.shaded.io.netty.buffer.ByteBuf)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5555be", + "lines": [ + "do_epoll_pwait.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555a77", + "lines": [ + "__x64_sys_epoll_pwait2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72d2", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x129fa0", + "lines": [ + "epoll_pwait2[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5f83", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x5f83[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait0(int, long, int, int, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWait(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x105b", + "lines": [ + "__nf_ct_refresh_acct[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13c3", + "lines": [ + "nf_conntrack_handle_packet[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42c2", + "lines": [ + "nf_conntrack_in[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8e77", + "lines": [ + "ipv4_conntrack_local[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfb0be2", + "lines": [ + "nf_hook_slow[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc52a8", + "lines": [ + "__ip_local_out[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc535b", + "lines": [ + "ip_local_out[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc554d", + "lines": [ + "__ip_queue_xmit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfc58c4", + "lines": [ + "ip_queue_xmit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfefc15", + "lines": [ + "__tcp_transmit_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xff167e", + "lines": [ + "tcp_write_xmit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xff1cd6", + "lines": [ + "__tcp_push_pending_frames[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd6222", + "lines": [ + "tcp_push[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd73f3", + "lines": [ + "tcp_sendmsg_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd77db", + "lines": [ + "tcp_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10858e1", + "lines": [ + "inet6_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec5294", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e00e8", + "lines": [ + "do_iter_readv_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1820", + "lines": [ + "vfs_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1ae7", + "lines": [ + "do_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1b7b", + "lines": [ + "__x64_sys_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70b6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91b4", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x91b4[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(int, long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPromise io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.addListener(io.grpc.netty.shaded.io.netty.util.concurrent.GenericFutureListener)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.writeAllocatedBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.write(io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2Stream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.write(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb2", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distributeToChildren(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4d4d38", + "lines": [ + "PhaseOutput::BuildOopMaps()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd2113b", + "lines": [ + "PhaseOutput::Output()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x672522", + "lines": [ + "Compile::Code_Gen()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x676469", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xca2906", + "lines": [ + "MethodLiveness::BasicBlock::get_liveness_at(ciMethod*, int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xca2aae", + "lines": [ + "MethodLiveness::get_liveness_at(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x5dfc66", + "lines": [ + "ciMethod::liveness_at_bci(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x88e7f5", + "lines": [ + "GraphKit::kill_dead_locals()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x893c3f", + "lines": [ + "GraphKit::uncommon_trap(int, ciKlass*, char const*, bool, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x89da6d", + "lines": [ + "GraphKit::null_check_common(Node*, BasicType, bool, Node**, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59dfb1", + "lines": [ + "PredictedCallGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x765c87", + "lines": [ + "Parse::do_call()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd34074", + "lines": [ + "Parse::do_one_block()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd344b4", + "lines": [ + "Parse::do_all_blocks()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd36c34", + "lines": [ + "Parse::Parse(JVMState*, ciMethod*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59c7ea", + "lines": [ + "ParseGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59e1b8", + "lines": [ + "PredictedCallGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x765c87", + "lines": [ + "Parse::do_call()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd34074", + "lines": [ + "Parse::do_one_block()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd344b4", + "lines": [ + "Parse::do_all_blocks()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd36c34", + "lines": [ + "Parse::Parse(JVMState*, ciMethod*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59c7ea", + "lines": [ + "ParseGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59e1b8", + "lines": [ + "PredictedCallGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x765c87", + "lines": [ + "Parse::do_call()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd34074", + "lines": [ + "Parse::do_one_block()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd344b4", + "lines": [ + "Parse::do_all_blocks()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd36c34", + "lines": [ + "Parse::Parse(JVMState*, ciMethod*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59c7ea", + "lines": [ + "ParseGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59e1b8", + "lines": [ + "PredictedCallGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59e1b8", + "lines": [ + "PredictedCallGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x765c87", + "lines": [ + "Parse::do_call()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd34074", + "lines": [ + "Parse::do_one_block()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd344b4", + "lines": [ + "Parse::do_all_blocks()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd36c34", + "lines": [ + "Parse::Parse(JVMState*, ciMethod*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59c7ea", + "lines": [ + "ParseGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59e1b8", + "lines": [ + "PredictedCallGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x765c87", + "lines": [ + "Parse::do_call()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd34074", + "lines": [ + "Parse::do_one_block()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd344b4", + "lines": [ + "Parse::do_all_blocks()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd36c34", + "lines": [ + "Parse::Parse(JVMState*, ciMethod*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59c7ea", + "lines": [ + "ParseGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x675c85", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb92de7", + "lines": [ + "PhaseLive::compute(unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x5c9bd2", + "lines": [ + "PhaseChaitin::Register_Allocate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x672278", + "lines": [ + "Compile::Code_Gen()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x676469", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xd51e08", + "lines": [ + "PhaseIterGVN::add_users_to_worklist0(Node*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd5205e", + "lines": [ + "PhaseIterGVN::add_users_to_worklist(Node*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd55d40", + "lines": [ + "PhaseIterGVN::PhaseIterGVN(PhaseGVN*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67382c", + "lines": [ + "Compile::Optimize()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x675e41", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xd99fe4", + "lines": [ + "RegMask::is_misaligned_pair() const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x5c3f28", + "lines": [ + "PhaseChaitin::gather_lrg_masks(bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x5c9bc3", + "lines": [ + "PhaseChaitin::Register_Allocate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x672278", + "lines": [ + "Compile::Code_Gen()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x676469", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x17834", + "lines": [ + "__tls_get_addr[]@:0" + ], + "mapping": "0x1000-0x2c000@0x1000 ld-linux-x86-64.so.2(353e1b6cb0eebc08cf3ff812eae8a51b4efd684e)" + }, + { + "address": "0xf8035e", + "lines": [ + "FastThreadsListHandle::FastThreadsListHandle(oopDesc*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb1d24", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.trySend-JP2dKIU(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.kotlin.ClientCalls$rpcImpl$1$1$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingClientCallListener.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8c", + "lines": [ + "void com.intellij.execution.process.mediator.client.grpc.LoggingClientInterceptor$interceptCall$1$start$listener$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x985df", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x98d6b", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb03", + "lines": [ + "linux-vdso.1.so 0xb03[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0xec96c", + "lines": [ + "__GI___clock_gettime[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13205", + "lines": [ + "os::javaTimeNanos()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1a", + "lines": [ + "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.canReacquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.util.concurrent.Delayed java.util.concurrent.DelayQueue.take()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void javax.swing.TimerQueue.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x14fc68", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a9f3", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.util.concurrent.Delayed java.util.concurrent.DelayQueue.take()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.AppDelayQueue$TransferThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x107faf8", + "lines": [ + "iris_dri.so 0x107faf8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x10802b2", + "lines": [ + "iris_dri.so 0x10802b2[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1091273", + "lines": [ + "iris_dri.so 0x1091273[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1094724", + "lines": [ + "iris_dri.so 0x1094724[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x114c8b", + "lines": [ + "XaceHook[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x8c36e", + "lines": [ + "dixLookupResourceByType[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x140e37", + "lines": [ + "Xorg 0x140e37[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x689350", + "lines": [ + "iris_dri.so 0x689350[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x19c41a", + "lines": [ + "iris_dri.so 0x19c41a[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16818", + "lines": [ + "libglamoregl.so 0x16818[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x16bc2", + "lines": [ + "libglamoregl.so 0x16bc2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x173a2", + "lines": [ + "libglamoregl.so 0x173a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x18bf8", + "lines": [ + "libglamoregl.so 0x18bf8[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14b73c", + "lines": [ + "Xorg 0x14b73c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x13c6a2", + "lines": [ + "CompositePicture[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x15ac7", + "lines": [ + "libglamoregl.so 0x15ac7[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x17315", + "lines": [ + "libglamoregl.so 0x17315[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x18bf8", + "lines": [ + "libglamoregl.so 0x18bf8[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14b73c", + "lines": [ + "Xorg 0x14b73c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x75991", + "lines": [ + "eb_validate_vmas[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77bb0", + "lines": [ + "i915_gem_do_execbuffer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x78b59", + "lines": [ + "i915_gem_execbuffer2_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3798", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3ae3", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501d4f", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68fa", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1002d80", + "lines": [ + "iris_dri.so 0x1002d80[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x10059e9", + "lines": [ + "iris_dri.so 0x10059e9[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xff1f96", + "lines": [ + "iris_dri.so 0xff1f96[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x69309d", + "lines": [ + "iris_dri.so 0x69309d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16f156", + "lines": [ + "iris_dri.so 0x16f156[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xa65c", + "lines": [ + "libglamoregl.so 0xa65c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xd23a", + "lines": [ + "modesetting_drv.so 0xd23a[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x678cc", + "lines": [ + "BlockHandler[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1bf", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1e9017", + "lines": [ + "Xorg 0x1e9017[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e08d7", + "lines": [ + "ReadRequestFromClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x629ba", + "lines": [ + "Xorg 0x629ba[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xad79f", + "lines": [ + "tcache_get_n[]@:0", + "tcache_get[]@:0", + "__GI___libc_malloc[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x87f40", + "lines": [ + "RegionCreate[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x8a005", + "lines": [ + "RegionFromRects[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13bf3c", + "lines": [ + "SetPictureClipRects[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13efb7", + "lines": [ + "Xorg 0x13efb7[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x136362", + "lines": [ + "iris_dri.so 0x136362[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x13687c", + "lines": [ + "iris_dri.so 0x13687c[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x313125", + "lines": [ + "iris_dri.so 0x313125[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x100ef", + "lines": [ + "libglamoregl.so 0x100ef[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x484cb", + "lines": [ + "libGLdispatch.so.0.0.0 0x484cb[]@:0" + ], + "mapping": "0x41000-0x80000@0x41000 libGLdispatch.so.0.0.0(4ee95626201c900afa8af1cb3e983f1405d85d3c)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1aac76", + "lines": [ + "_mm_cmpistri[]@:0", + "__strspn_sse42[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xb5c2c", + "lines": [ + "__GI___strtok_r[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x3246730", + "lines": [ + "libxul.so 0x3246730[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3246290", + "lines": [ + "libxul.so 0x3246290[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x322696b", + "lines": [ + "libxul.so 0x322696b[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2af6785", + "lines": [ + "libxul.so 0x2af6785[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d620", + "lines": [ + "libxul.so 0x2a5d620[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + } + ], + "period": "1000000000" +} \ No newline at end of file diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-offcpu.json b/pkg/test/integration/testdata/otel-ebpf-profiler-offcpu.json new file mode 100644 index 0000000000..6791d08536 --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-offcpu.json @@ -0,0 +1,288082 @@ +{ + "sample_types": [ + { + "type": "events", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41b768", + "lines": [ + "runtime.mapaccess1_faststr[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d15", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "23159547" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d782", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "332628" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4298e9", + "lines": [ + "runtime.(*gcBits).bitp[]@:0", + "runtime.(*mspan).markBitsForIndex[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x429119", + "lines": [ + "runtime.gcDrainN[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x427bc9", + "lines": [ + "runtime.gcAssistAlloc1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x427a9a", + "lines": [ + "runtime.gcAssistAlloc.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1390059141" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd698b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "803535394" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41cfde", + "lines": [ + "runtime.readUintptr[]@:0", + "runtime.(*mspan).writeHeapBitsSmall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41d2ea", + "lines": [ + "runtime.heapSetType[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477f0e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22b2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "47924224" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1be7e0c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "39800" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x452fc4", + "lines": [ + "runtime.checkdead[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x45454a", + "lines": [ + "runtime.mput[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6c6", + "lines": [ + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "9106624" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x516fb5", + "lines": [ + "fmt.(*pp).printArg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "83062275" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d7a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "30174111" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b938cf", + "lines": [ + "encoding/binary.littleEndian.Uint32[]@:0", + "go.opentelemetry.io/ebpf-profiler/nopanicslicereader.Uint32[]@:0", + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "5567858" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4873e0", + "lines": [ + "runtime.cgoSigtramp[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4531f", + "lines": [ + "libc.so.6 0x4531f[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "172768" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42945c", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "19389444" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1be7cfe", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3790336" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41cfe1", + "lines": [ + "runtime.(*mspan).writeHeapBitsSmall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41d2ea", + "lines": [ + "runtime.heapSetType[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477f0e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd65f7", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.NewReference[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "369625" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bccf0f", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).findKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcc324", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc45e", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "413157894" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b935e7", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "75723276" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b9da6f", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.uint64]).findKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9ce64", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.uint64]).get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9d0e4", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.uint64]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b953b9", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getStubNameID[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b99395", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "17281691" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ec6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6eb", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e804", + "lines": [ + "runtime.goschedImpl[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x45f710", + "lines": [ + "runtime.gopreempt_m[]@:0", + "runtime.newstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4839b9", + "lines": [ + "runtime.morestack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1761435" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477cc2", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d224f", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "77628269" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123afd5", + "lines": [ + "io_schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b9925", + "lines": [ + "folio_wait_bit_common[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3ba21b", + "lines": [ + "filemap_update_page[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3ba78e", + "lines": [ + "filemap_get_pages[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3ba9f6", + "lines": [ + "filemap_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3bc0da", + "lines": [ + "generic_file_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5de402", + "lines": [ + "ext4_file_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3364", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3555", + "lines": [ + "__x64_sys_pread64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71d3", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dcb64", + "lines": [ + "syscall.pread[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fc36d", + "lines": [ + "syscall.Pread[]@:0", + "internal/poll.(*FD).Pread[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5079ce", + "lines": [ + "os.(*File).pread[]@:0", + "os.(*File).ReadAt[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6cf753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb.(*Table).getEntry[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6cfc8c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb.(*Table).lookupCold.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x568125", + "lines": [ + "sort.Search[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6cfa54", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb.(*Table).lookupCold[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d3538", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb.(*Table).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b33e64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.symbolizeNativeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b331dd", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).setProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b30b36", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.Generate[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46639", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46364", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b479fb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "18355110" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6329a1", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsHex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x632d65", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsLowerHex[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifierTo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d223e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifier[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "213181103" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b3b84", + "lines": [ + "github.com/cilium/ebpf.(*Map).marshalKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "216103377" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b4d140", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b939a5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "248777446" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x486576", + "lines": [ + "runtime.memclrNoHeapPointers[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d9e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd653a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.New[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "114841208" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b95f", + "lines": [ + "runtime.spanOf[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "46995" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44ceee", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "23926939" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x485426", + "lines": [ + "runtime.procyield[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47ddd3", + "lines": [ + "sync.runtime_doSpin[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49e74b", + "lines": [ + "sync.(*Mutex).lockSlow[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49fa30", + "lines": [ + "sync.(*Mutex).Lock[]@:0", + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391b0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "63964" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4794b5", + "lines": [ + "runtime.mapiternext[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4792e7", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4cca", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "974455837" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4400ef", + "lines": [ + "runtime.futexwakeup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416dc4", + "lines": [ + "runtime.notewakeup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b9a8", + "lines": [ + "runtime.startm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d62b", + "lines": [ + "runtime.wakep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44ddfd", + "lines": [ + "runtime.resetspinning[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e28e", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "672438348" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47de46", + "lines": [ + "runtime.rand[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x479284", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd686e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "110731029" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49a6fd", + "lines": [ + "strconv.formatBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49a36e", + "lines": [ + "strconv.AppendUint[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3b64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "73076168" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d225c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).FileName[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "24976146" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1be8de4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "16823" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4793a8", + "lines": [ + "runtime.mapiternext[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4792e7", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4cca", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12682647" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dd63a", + "lines": [ + "syscall.fstatat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50c551", + "lines": [ + "syscall.Stat[]@:0", + "os.statNolog.func1[]@:0", + "os.ignoringEINTR[]@:0", + "os.statNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50c16b", + "lines": [ + "os.Stat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2417", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "61097296" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b38998", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).RLock[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/xsync.(*RWMutex[go.shape.map[go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno]go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.SourceInfo]).RLock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f2e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12179393" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c87", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5a90", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "494578243" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3c09", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "481051" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487056", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x453304", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x453304", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x449e72", + "lines": [ + "runtime.mstart1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x449db5", + "lines": [ + "runtime.mstart0[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4837a4", + "lines": [ + "runtime.mstart[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "53486135929" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4400a4", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ff2", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417128", + "lines": [ + "runtime.notetsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44a4ed", + "lines": [ + "runtime.forEachPInternal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x423c1e", + "lines": [ + "runtime.gcMarkDone.forEachP.func5[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "997730842" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bdf", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "93456668" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b96f", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "110057" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48655e", + "lines": [ + "runtime.memclrNoHeapPointers[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d9e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2286", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "82675221" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece5d8", + "lines": [ + "__lock_sock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece693", + "lines": [ + "lock_sock_nested[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd77cd", + "lines": [ + "tcp_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1021551", + "lines": [ + "inet_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec52dc", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3fa2", + "lines": [ + "vfs_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4468", + "lines": [ + "ksys_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e44c8", + "lines": [ + "__x64_sys_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x553d", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dc4fa", + "lines": [ + "syscall.write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fe1d3", + "lines": [ + "syscall.Write[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5e10e4", + "lines": [ + "net.(*netFD).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5f0a04", + "lines": [ + "net.(*conn).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x604c04", + "lines": [ + "net.(*TCPConn).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa2c775", + "lines": [ + "google.golang.org/grpc/internal/transport.(*bufWriter).flushKeepBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa2c5a4", + "lines": [ + "google.golang.org/grpc/internal/transport.(*bufWriter).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x9e8026", + "lines": [ + "golang.org/x/net/http2.(*Framer).endWrite[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x9e91d9", + "lines": [ + "golang.org/x/net/http2.(*Framer).WriteDataPadded[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa0e088", + "lines": [ + "golang.org/x/net/http2.(*Framer).WriteData[]@:0", + "google.golang.org/grpc/internal/transport.(*loopyWriter).processData[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa0c267", + "lines": [ + "google.golang.org/grpc/internal/transport.(*loopyWriter).run[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa16071", + "lines": [ + "google.golang.org/grpc/internal/transport.NewHTTP2Client.func6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "5354" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bdc429", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "119789204" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41c580", + "lines": [ + "runtime.typePointers.next[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "669210877" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a81a", + "lines": [ + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "64332778" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b38900", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/xsync.(*RWMutex[go.shape.map[go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno]go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.SourceInfo]).RUnlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43fa8", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "235644658" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477eef", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2286", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "9310076" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f1be6", + "lines": [ + "time.Now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b3a349", + "lines": [ + "github.com/elastic/go-freelru.expire[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).getAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "269825525" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429451", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "104737996" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x513a31", + "lines": [ + "fmt.newPrinter[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513faf", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xbd30e5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.(*AttrTableManager).AppendOptionalString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b3267b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).setProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b30b36", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.Generate[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46639", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46364", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b479fb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8590164" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x418267", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b30b36", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.Generate[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46639", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46364", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b479fb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "184428918" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b9fd", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "36013479" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47dde1", + "lines": [ + "sync.runtime_doSpin[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49e74b", + "lines": [ + "sync.(*Mutex).lockSlow[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49fa30", + "lines": [ + "sync.(*Mutex).Lock[]@:0", + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391b0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "66568193" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c79", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12824457" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b39199", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "61904524" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45e814", + "lines": [ + "__kmalloc_node[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3efdb3", + "lines": [ + "kvmalloc_node[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f0805", + "lines": [ + "vmemdup_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3135f8", + "lines": [ + "map_lookup_elem[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31544b", + "lines": [ + "__sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x315da9", + "lines": [ + "__x64_sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6df5", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4defed", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x639293", + "lines": [ + "github.com/cilium/ebpf/internal/unix.Syscall[]@:0", + "github.com/cilium/ebpf/internal/sys.BPF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b0e45", + "lines": [ + "github.com/cilium/ebpf/internal/sys.MapLookupElem[]@:0", + "github.com/cilium/ebpf.(*Map).lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2050873" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42994e", + "lines": [ + "runtime.markBits.isMarked[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1046978920" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44f441", + "lines": [ + "runtime.reentersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d69e", + "lines": [ + "runtime.entersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de144", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4defed", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x639293", + "lines": [ + "github.com/cilium/ebpf/internal/unix.Syscall[]@:0", + "github.com/cilium/ebpf/internal/sys.BPF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b0e45", + "lines": [ + "github.com/cilium/ebpf/internal/sys.MapLookupElem[]@:0", + "github.com/cilium/ebpf.(*Map).lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "133385439" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47789f", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93a48", + "lines": [ + "bytes.NewReader[]@:0", + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "82149471" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40d17e", + "lines": [ + "indexbody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48a8bd", + "lines": [ + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "5854513" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41d05f", + "lines": [ + "runtime.(*mspan).writeHeapBitsSmall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41d2ea", + "lines": [ + "runtime.heapSetType[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477f0e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8c44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "13167825" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44c735", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "133404292" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4294b8", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8046681" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56810a", + "lines": [ + "sort.Search[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bdf44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ecc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "389651451" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5172aa", + "lines": [ + "fmt.(*pp).printArg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "17380" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa41", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc509", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3e25", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Set[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7f42", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8946079" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477983", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b8a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "38731626" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x486340", + "lines": [ + "runtime.memclrNoHeapPointers[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fd05", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5a90", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "38224273" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477989", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93a48", + "lines": [ + "bytes.NewReader[]@:0", + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "253021326" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41ce88", + "lines": [ + "runtime.heapBitsSlice[]@:0", + "runtime.(*mspan).heapBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41d024", + "lines": [ + "runtime.(*mspan).writeHeapBitsSmall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41d2ea", + "lines": [ + "runtime.heapSetType[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477f0e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2286", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "112931190" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6c063b", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint32,go.shape.string]).get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bf457", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint32,go.shape.string]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bc0f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.LookupCgroupv2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b44209", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "62961951" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fb81", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391f0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "30252070" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3c12", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "22304047" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487056", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "227741602021" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477ad2", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x415e3a", + "lines": [ + "runtime.convT32[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6529", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.NewProcessVirtualMemory[]@:0", + "go.opentelemetry.io/ebpf-profiler/process.New[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50129044" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40d3e5", + "lines": [ + "indexbytebody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48ac4a", + "lines": [ + "internal/stringslite.IndexByte[]@:0", + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "43315154" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a0040", + "lines": [ + "github.com/elastic/go-freelru.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "9080735" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x478603", + "lines": [ + "runtime.mapaccess2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d23ac", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "20994969" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416b44", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d59c", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.wakep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44ddfd", + "lines": [ + "runtime.resetspinning[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e28e", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e804", + "lines": [ + "runtime.goschedImpl[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x45f710", + "lines": [ + "runtime.gopreempt_m[]@:0", + "runtime.newstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4839b9", + "lines": [ + "runtime.morestack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "466061" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x632862", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsHex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x632d96", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsLowerHex[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifierTo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d223e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifier[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "268989684" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b940", + "lines": [ + "runtime.spanOf[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "220449725" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3be6", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2565341192" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47ba01", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "54536282" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1418345988" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b96b", + "lines": [ + "runtime.spanOf[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "10347" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3be6", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "104531286" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429973", + "lines": [ + "runtime.pageIndexOf[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "520888089" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3c25", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "15024537" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa41", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391b0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12987945" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4298e9", + "lines": [ + "runtime.(*gcBits).bitp[]@:0", + "runtime.(*mspan).markBitsForIndex[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "730987938" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47f74c", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b8a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "73324889" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x568113", + "lines": [ + "sort.Search[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bdf44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ecc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "24040312" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42998d", + "lines": [ + "runtime.pageIndexOf[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1157428643" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x478194", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "63566844" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45ef65", + "lines": [ + "kmem_cache_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f4eef", + "lines": [ + "getname_flags.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc1f3", + "lines": [ + "getname[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4def7e", + "lines": [ + "do_sys_openat2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4df474", + "lines": [ + "__x64_sys_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7377", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "69663472" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49a3e9", + "lines": [ + "strconv.formatBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3b64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "34861789" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49ee78", + "lines": [ + "sync.(*Pool).pin[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49ebfb", + "lines": [ + "sync.(*Pool).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513a1d", + "lines": [ + "fmt.newPrinter[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513faf", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "35759388" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1be8f31", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "65368698" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece5d8", + "lines": [ + "__lock_sock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece693", + "lines": [ + "lock_sock_nested[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd9bcb", + "lines": [ + "tcp_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10215f3", + "lines": [ + "inet_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec48b5", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec497e", + "lines": [ + "sock_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3456", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e42d8", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4338", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6f99", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dc337", + "lines": [ + "syscall.read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fc10d", + "lines": [ + "syscall.Read[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5e08c4", + "lines": [ + "net.(*netFD).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5f0844", + "lines": [ + "net.(*conn).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x604904", + "lines": [ + "net.(*TCPConn).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5350b6", + "lines": [ + "bufio.(*Reader).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4cdc2f", + "lines": [ + "io.ReadAtLeast[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x9e7e24", + "lines": [ + "io.ReadFull[]@:0", + "golang.org/x/net/http2.readFrameHeader[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x9e8564", + "lines": [ + "golang.org/x/net/http2.(*Framer).ReadFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa1fe91", + "lines": [ + "google.golang.org/grpc/internal/transport.(*http2Client).reader[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa16184", + "lines": [ + "google.golang.org/grpc/internal/transport.NewHTTP2Client.gowrap4[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "95116" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4298f8", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "214180159" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3c2f", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "9137824" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fbee", + "lines": [ + "sync.(*Mutex).Unlock[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd7204", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).SymbolizationComplete.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd703b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).SymbolizationComplete[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb048", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf2a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "4788553" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b940", + "lines": [ + "runtime.spanOf[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12498078815" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42946f", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "63533" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477949", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d224f", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1146871657" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1be7d4d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "5408021" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47a5ab", + "lines": [ + "runtime.mapaccess2_fast64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f87", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2512692" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6bdfe0", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bdf44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ecc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "16239250" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4779a6", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d224f", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "39754" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3be9", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "43973925" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ec6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6eb", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c1ee", + "lines": [ + "runtime.gcstopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c68b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2971616" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42922c", + "lines": [ + "runtime.scanblock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x427133", + "lines": [ + "runtime.markrootBlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x426f30", + "lines": [ + "runtime.markroot[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428f33", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8718" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4838e0", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "30313" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe40", + "lines": [ + "linux-vdso.1.so 0xe40[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48722c", + "lines": [ + "runtime.nanotime1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "37826" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c2a", + "lines": [ + "runtime.makeSpanClass[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "45604711" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4794ba", + "lines": [ + "runtime.mapiternext[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4792e7", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd686e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "93152847" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x454921", + "lines": [ + "runtime.pidleget[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454a12", + "lines": [ + "runtime.pidlegetSpinning[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d5a4", + "lines": [ + "runtime.wakep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4484c4", + "lines": [ + "runtime.ready[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x411bc4", + "lines": [ + "runtime.recv.goready.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "16236233" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x511d5e", + "lines": [ + "fmt.(*buffer).writeString[]@:0", + "fmt.(*fmt).padString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x512838", + "lines": [ + "fmt.(*fmt).fmtS[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5156a4", + "lines": [ + "fmt.(*pp).fmtString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5172c5", + "lines": [ + "fmt.(*pp).printArg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "94982263" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41c5d9", + "lines": [ + "runtime.addb[]@:0", + "runtime.typePointers.next[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "39627726" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x418271", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50c527", + "lines": [ + "os.statNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50c16b", + "lines": [ + "os.Stat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2417", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "37889" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47ba01", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "130174858" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429960", + "lines": [ + "runtime.arenaIndex[]@:0", + "runtime.pageIndexOf[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "214690111" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d88b", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "21588287" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c5e", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b8a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "38982207" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487056", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44eb84", + "lines": [ + "runtime.preemptPark[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "225295478" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x486a27", + "lines": [ + "runtime.memmove[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b59c07", + "lines": [ + "github.com/cilium/ebpf/perf.(*forwardReader).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b59f69", + "lines": [ + "github.com/cilium/ebpf/perf.(*perfEventRing).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4cdc2f", + "lines": [ + "io.ReadAtLeast[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b56aee", + "lines": [ + "io.ReadFull[]@:0", + "github.com/cilium/ebpf/perf.readRawSample[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b567b1", + "lines": [ + "github.com/cilium/ebpf/perf.readRecord[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b58e5e", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b582f0", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "20986136" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc43e", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "43327" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x486476", + "lines": [ + "runtime.memclrNoHeapPointers[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fd05", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd595e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "683890946" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb03", + "lines": [ + "linux-vdso.1.so 0xb03[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48782d", + "lines": [ + "time.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "124192195" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb36", + "lines": [ + "linux-vdso.1.so 0xb36[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48783f", + "lines": [ + "time.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "23608423" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xaf3", + "lines": [ + "linux-vdso.1.so 0xaf3[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48782d", + "lines": [ + "time.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8281102" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd5a66", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "43831771" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d2311", + "lines": [ + "sync.(*Mutex).Lock[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "118230570" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b931c2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b99352", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "616071659" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4299f7", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "18548983" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477870", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "96437534" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c5e", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd653a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.New[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "9221766" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4330d2", + "lines": [ + "runtime.(*mspan).init[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43243c", + "lines": [ + "runtime.(*mheap).allocSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x431c5b", + "lines": [ + "runtime.(*mheap).alloc.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "769602505" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41a4c0", + "lines": [ + "runtime.mapaccess1_fast32[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "263339711" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x428021", + "lines": [ + "runtime.gcFlushBgCredit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d9c", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "647254904" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b8aaef", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).findKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b89ec4", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b8a144", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b95864", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getMethod[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93ba4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "22337" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fb81", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc476", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "100541012" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x452a89", + "lines": [ + "runtime.wirep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x45299b", + "lines": [ + "runtime.acquirep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b714", + "lines": [ + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "25005077" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b96f", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1145853718" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42946f", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "484564567" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43d4e0", + "lines": [ + "runtime.(*spanSet).pop[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41e332", + "lines": [ + "runtime.(*mcache).refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417fc4", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d2c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcab8c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "593039429" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47ba0a", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "224300070" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41d115", + "lines": [ + "runtime.(*mspan).writeHeapBitsSmall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41d2ea", + "lines": [ + "runtime.heapSetType[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477f0e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd65f7", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.NewReference[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "220366229" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d6d3", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "55873531" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b59f40", + "lines": [ + "github.com/cilium/ebpf/perf.(*perfEventRing).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b566b8", + "lines": [ + "io.ReadFull[]@:0", + "github.com/cilium/ebpf/perf.readRecord[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b58e5e", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b582f0", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "14501" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47a1ac", + "lines": [ + "runtime.mapaccess2_fast32[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6814", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "208892678" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b38998", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).RLock[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/xsync.(*RWMutex[go.shape.map[go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno]go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.SourceInfo]).RLock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f2e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b939a5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "25611" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b8ab87", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).findKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b89ec4", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b8a144", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b95864", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getMethod[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93ba4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2676402886" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477890", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "42557879" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bc2", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "228244322" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48acc8", + "lines": [ + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "24813995" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44ddf3", + "lines": [ + "internal/runtime/atomic.(*Int32).Add[]@:0", + "runtime.resetspinning[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e28e", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "182211339" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51a9f4", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8468636" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429957", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "64251" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487643", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ec6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6eb", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1171972644" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487115", + "lines": [ + "runtime.tgkill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x440d26", + "lines": [ + "runtime.signalM[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x453a99", + "lines": [ + "runtime.preemptM[]@:0", + "runtime.preemptone[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42ac55", + "lines": [ + "runtime.(*gcControllerState).enlistWorker[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4307a4", + "lines": [ + "runtime.(*gcWork).balance[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428ca6", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "427564237" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bcc5fd", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcad84", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "152560102" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42948c", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "136569" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ef31", + "lines": [ + "down_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fba57", + "lines": [ + "open_last_lookups[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fbc88", + "lines": [ + "path_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc9de", + "lines": [ + "do_filp_open[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4defb2", + "lines": [ + "do_sys_openat2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4df474", + "lines": [ + "__x64_sys_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7377", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1562478" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47a67b", + "lines": [ + "runtime.mapaccess2_fast64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f87", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "505257992" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477cbc", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "24965236" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d3224", + "lines": [ + "sync.(*Mutex).Unlock[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4427bd", + "lines": [ + "runtime.deferreturn[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2477", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "39504206" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd572a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "881770697" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b9fd", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "403056592" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab0", + "lines": [ + "linux-vdso.1.so 0xab0[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48722c", + "lines": [ + "runtime.nanotime1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "19051233" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40d2ec", + "lines": [ + "indexbody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48a8bd", + "lines": [ + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "29160546" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x478644", + "lines": [ + "runtime.add[]@:0", + "runtime.mapaccess2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d23ac", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "47421131" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49a71f", + "lines": [ + "strconv.formatBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49a36e", + "lines": [ + "strconv.AppendUint[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3b64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2154471" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47de35", + "lines": [ + "runtime.rand[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x479284", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd686e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "275209494" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fb81", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391f0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "73419718" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd51a1", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.FrameType.IsError[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "46778120" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f86ca", + "lines": [ + "internal/filepathlite.IsPathSeparator[]@:0", + "internal/filepathlite.Clean[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x66c7e4", + "lines": [ + "path/filepath.Clean[]@:0", + "path/filepath.join[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d32ea", + "lines": [ + "path/filepath.Join[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).tableFilePath[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d23f9", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3804948" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x478606", + "lines": [ + "runtime.mapaccess2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d23ac", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "65218849" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b920", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "523687668" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42941e", + "lines": [ + "runtime.typePointers.nextFast[]@:0", + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1217346928" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x632a3d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsHex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x632d65", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsLowerHex[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifierTo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d223e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifier[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "259703193" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4400a4", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ff2", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417128", + "lines": [ + "runtime.notetsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x449a5b", + "lines": [ + "runtime.stopTheWorldWithSema[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x423ba4", + "lines": [ + "runtime.gcMarkDone.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "203815058" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4478a7", + "lines": [ + "runtime.forEachG[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425add", + "lines": [ + "runtime.gcResetMarkState[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "26417550" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416b44", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d59c", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.wakep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44ddfd", + "lines": [ + "runtime.resetspinning[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e28e", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "108468" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b9fd", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "43350" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c3b", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22b2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "6172209" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x452a40", + "lines": [ + "runtime.wirep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b714", + "lines": [ + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "229809694" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x482ff6", + "lines": [ + "gcWriteBarrier[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44248a", + "lines": [ + "runtime.popDefer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44248a", + "lines": [ + "runtime.popDefer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x442d6b", + "lines": [ + "runtime.(*_panic).nextDefer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4427c7", + "lines": [ + "runtime.deferreturn[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2477", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "191166299" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3c28", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "224693630" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43d7fc", + "lines": [ + "internal/runtime/atomic.(*Uint64).Add[]@:0", + "runtime.(*atomicHeadTailIndex).incTail[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43d349", + "lines": [ + "runtime.(*spanSet).push[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41ede4", + "lines": [ + "runtime.(*mcentral).uncacheSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41e27e", + "lines": [ + "runtime.(*mcache).refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417fc4", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d2c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "37177356" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42a02c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.gcmarknewobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477f44", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48039d", + "lines": [ + "runtime.rawstring[]@:0", + "runtime.gostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8be4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer._Cfunc_GoString[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "382480820" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bccb11", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).unlinkElement[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).addWithLifetime[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcc624", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcad84", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2259677" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc43e", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "300701198" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42941e", + "lines": [ + "runtime.typePointers.nextFast[]@:0", + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "62040" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd588a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "67109630" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x479463", + "lines": [ + "runtime.mapiternext[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4792e7", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4cca", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "250068882" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40d418", + "lines": [ + "indexbytebody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48ac4a", + "lines": [ + "internal/stringslite.IndexByte[]@:0", + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "572194" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416b44", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e798", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.goschedImpl[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x45f710", + "lines": [ + "runtime.gopreempt_m[]@:0", + "runtime.newstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4839b9", + "lines": [ + "runtime.morestack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2675967" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b4d15a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b939a5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "41865377" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b9fd", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43ebf0", + "lines": [ + "runtime.wbBufFlush1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x474d9d", + "lines": [ + "runtime.wbBufFlush.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "55606767" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b998", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1966609" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f165d", + "lines": [ + "pipe_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3fa2", + "lines": [ + "vfs_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4468", + "lines": [ + "ksys_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e44c8", + "lines": [ + "__x64_sys_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x553d", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dc4fa", + "lines": [ + "syscall.write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fe1d3", + "lines": [ + "syscall.Write[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x507c70", + "lines": [ + "os.(*File).write[]@:0", + "os.(*File).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513ef6", + "lines": [ + "fmt.Fprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d308e", + "lines": [ + "fmt.Printf[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "212329940" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477fd1", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "203986290" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44c7c1", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "406733090" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487056", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e804", + "lines": [ + "runtime.goschedImpl[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x45f710", + "lines": [ + "runtime.gopreempt_m[]@:0", + "runtime.newstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4839b9", + "lines": [ + "runtime.morestack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1177709" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b956", + "lines": [ + "runtime.spanOf[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43ebf0", + "lines": [ + "runtime.wbBufFlush1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x474d9d", + "lines": [ + "runtime.wbBufFlush.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "512727054" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4400ef", + "lines": [ + "runtime.futexwakeup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416dc4", + "lines": [ + "runtime.notewakeup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b9a8", + "lines": [ + "runtime.startm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d62b", + "lines": [ + "runtime.wakep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4484c4", + "lines": [ + "runtime.ready[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x410c24", + "lines": [ + "runtime.send.goready.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "188938786" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x509462", + "lines": [ + "dput[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc278", + "lines": [ + "nd_jump_link[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a9af0", + "lines": [ + "proc_pid_get_link[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f9ef6", + "lines": [ + "pick_link[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fa041", + "lines": [ + "step_into[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fa730", + "lines": [ + "walk_component[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fab28", + "lines": [ + "link_path_walk.part.0.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fbc76", + "lines": [ + "path_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc9de", + "lines": [ + "do_filp_open[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4defb2", + "lines": [ + "do_sys_openat2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4df474", + "lines": [ + "__x64_sys_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7377", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "223924228" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477e1b", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48039d", + "lines": [ + "runtime.rawstring[]@:0", + "runtime.gostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8be4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer._Cfunc_GoString[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "7961166" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b98e", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1157073434" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477fc2", + "lines": [ + "runtime.releasem[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47f688", + "lines": [ + "runtime.makeslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd50a4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "116798948" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41e2c8", + "lines": [ + "runtime.(*mcache).refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417fc4", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d2c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b8a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "247860799" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x448cca", + "lines": [ + "runtime.casgstatus[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x448444", + "lines": [ + "runtime.ready[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x410c24", + "lines": [ + "runtime.send.goready.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3199756" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ec6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6eb", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c1ee", + "lines": [ + "runtime.gcstopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c68b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e804", + "lines": [ + "runtime.goschedImpl[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x45f710", + "lines": [ + "runtime.gopreempt_m[]@:0", + "runtime.newstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4839b9", + "lines": [ + "runtime.morestack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1886047209" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ec6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6eb", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4502f5", + "lines": [ + "runtime.exitsyscall0[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "374884" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44b6ec", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1037313486" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45d10b", + "lines": [ + "runtime.sigfwdgo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x45b9c4", + "lines": [ + "runtime.sigtrampgo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4873a5", + "lines": [ + "runtime.sigtramp[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4531f", + "lines": [ + "libc.so.6 0x4531f[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4330d2", + "lines": [ + "runtime.(*mspan).init[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43243c", + "lines": [ + "runtime.(*mheap).allocSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x431c5b", + "lines": [ + "runtime.(*mheap).alloc.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "202988310" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b38939", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).RUnlock[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/xsync.(*RWMutex[go.shape.map[go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno]go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.SourceInfo]).RUnlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b44027", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43fa8", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "54191621" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb03", + "lines": [ + "linux-vdso.1.so 0xb03[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48783f", + "lines": [ + "time.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1243463458" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4299b4", + "lines": [ + "runtime.pageIndexOf[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11369" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bcc875", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).addWithLifetime[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcc624", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcad84", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3494812" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd4e96", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "119816207" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4299f6", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "85366" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bf9", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "37255" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15610e", + "lines": [ + "do_sched_yield[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15617d", + "lines": [ + "__x64_sys_sched_yield[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58b8", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487786", + "lines": [ + "runtime.osyield[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416bc4", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6b8", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "38680" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42946a", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "400922638" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fbee", + "lines": [ + "sync.(*Mutex).Unlock[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391f0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "17838059" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47a56d", + "lines": [ + "runtime.mapaccess2_fast64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6837", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "461297911" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x632a90", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsHex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d223e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifier[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "34679699" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1be8f82", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "342173326" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4299b4", + "lines": [ + "runtime.pageIndexOf[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "15359931" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "791941274" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab1", + "lines": [ + "linux-vdso.1.so 0xab1[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48722c", + "lines": [ + "runtime.nanotime1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "364175750" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4470c8", + "lines": [ + "runtime.releaseSudog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x458dd2", + "lines": [ + "runtime.selectgo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3c9", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "315931034" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b3b0bf", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).hashToPos[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).findKeyNoExpire[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b3a204", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).getAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11216522" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4794d3", + "lines": [ + "runtime.mapiternext[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4792e7", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4cca", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "212326965" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ec6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6eb", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "16287448016" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x411d1d", + "lines": [ + "__get_user_pages[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x412e35", + "lines": [ + "__gup_longterm_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x413799", + "lines": [ + "pin_user_pages_remote[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4476ae", + "lines": [ + "process_vm_rw_single_vec.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4479d6", + "lines": [ + "process_vm_rw_core.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x447c7c", + "lines": [ + "process_vm_rw[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x447d16", + "lines": [ + "__x64_sys_process_vm_readv[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e6d", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4df05c", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x573033", + "lines": [ + "golang.org/x/sys/unix.ProcessVMReadv[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c8d37", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.ProcessVirtualMemory.ReadAt[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c954b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.(*ProcessVirtualMemory).ReadAt[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c8601", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.RemoteMemory.Read[]@:0", + "go.opentelemetry.io/ebpf-profiler/remotememory.RemoteMemory.Ptr[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b958bb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getMethod[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93ba4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "52304375" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x417f40", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47f688", + "lines": [ + "runtime.makeslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xadc291", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*Location).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xad8dab", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*Profile).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xad7def", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*ScopeProfiles).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xad78ef", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*ResourceProfiles).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xae9d0e", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*ExportProfilesServiceRequest).MarshalToSizedBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xae9b4c", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*ExportProfilesServiceRequest).Marshal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x769e51", + "lines": [ + "google.golang.org/protobuf/internal/impl.legacyMarshal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x7035e2", + "lines": [ + "google.golang.org/protobuf/proto.MarshalOptions.size[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x70348b", + "lines": [ + "google.golang.org/protobuf/proto.MarshalOptions.Size[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa36a19", + "lines": [ + "google.golang.org/grpc/encoding/proto.(*codecV2).Marshal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa90289", + "lines": [ + "google.golang.org/grpc.encode[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xaa9ce4", + "lines": [ + "google.golang.org/grpc.prepareMsg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xaa3130", + "lines": [ + "google.golang.org/grpc.(*clientStream).SendMsg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa8367e", + "lines": [ + "google.golang.org/grpc.invoke[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa8355e", + "lines": [ + "google.golang.org/grpc.(*ClientConn).Invoke[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xae9a84", + "lines": [ + "go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*profilesServiceClient).Export[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b41c66", + "lines": [ + "go.opentelemetry.io/collector/pdata/pprofile/pprofileotlp.(*grpcClient).Export[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4673d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46364", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b479fb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "42464854" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42acfb", + "lines": [ + "runtime.(*gcCPULimiterState).needUpdate[]@:0", + "runtime.(*gcControllerState).findRunnableGCWorker[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c4dd", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "226220886" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x426620", + "lines": [ + "runtime.(*limiterEvent).stop[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454a12", + "lines": [ + "runtime.pidlegetSpinning[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d5a4", + "lines": [ + "runtime.wakep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4484c4", + "lines": [ + "runtime.ready[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x411bc4", + "lines": [ + "runtime.recv.goready.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12809279" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47ae63", + "lines": [ + "runtime.mapaccess2_faststr[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ef8", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "23248494" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b98e", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "96563" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477aa9", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x415e3a", + "lines": [ + "runtime.convT32[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6529", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.NewProcessVirtualMemory[]@:0", + "go.opentelemetry.io/ebpf-profiler/process.New[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "14184" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4865c4", + "lines": [ + "runtime.memclrNoHeapPointers[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d9e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8c44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "115554314" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x485426", + "lines": [ + "runtime.procyield[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47ddd3", + "lines": [ + "sync.runtime_doSpin[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49e74b", + "lines": [ + "sync.(*Mutex).lockSlow[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49fa30", + "lines": [ + "sync.(*Mutex).Lock[]@:0", + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc43e", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "25042514" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fbee", + "lines": [ + "sync.(*Mutex).Unlock[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc549", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3e25", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Set[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7f42", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11857084" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41cfc0", + "lines": [ + "runtime.(*mspan).writeHeapBitsSmall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477f0e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd653a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.New[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "13793821" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd6460", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "15968916" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3c2f", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "37773" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4298c0", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "826619730" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b44006", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "222817398" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429454", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "198424967" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42994e", + "lines": [ + "runtime.markBits.isMarked[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "377638664" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bcabc5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "6778585" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b93189", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "37997" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x458df8", + "lines": [ + "runtime.selectgo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3c9", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "88378491" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47a10d", + "lines": [ + "runtime.mapaccess2_fast32[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdbaea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ExePathForPID[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8c06", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1582639433" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45512a", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "30187307" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5555be", + "lines": [ + "do_epoll_pwait.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5564a0", + "lines": [ + "__x64_sys_epoll_pwait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x645f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48a764", + "lines": [ + "internal/runtime/syscall.EpollWait[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43fd11", + "lines": [ + "runtime.netpoll[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44ccc4", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "18354" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd4c50", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "21218212" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bd1", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "402800234" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44f448", + "lines": [ + "runtime.reentersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d69e", + "lines": [ + "runtime.entersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de1d8", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12091203" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fb8b", + "lines": [ + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc476", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "61310958" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44c8e9", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "859255146" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b932a4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameID[]@:0", + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "199541798" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48accb", + "lines": [ + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "47518669" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43ec3d", + "lines": [ + "runtime.wbBufFlush1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x474d9d", + "lines": [ + "runtime.wbBufFlush.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "997338656" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4871d6", + "lines": [ + "runtime.nanotime1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x46514f", + "lines": [ + "runtime.nanotime[]@:0", + "runtime.(*timers).check[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x46514f", + "lines": [ + "runtime.nanotime[]@:0", + "runtime.(*timers).check[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c46e", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "25666" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bef", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "14044" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b59b9b", + "lines": [ + "github.com/cilium/ebpf/perf.(*forwardReader).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b59f69", + "lines": [ + "github.com/cilium/ebpf/perf.(*perfEventRing).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4cdc2f", + "lines": [ + "io.ReadAtLeast[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b566b8", + "lines": [ + "io.ReadFull[]@:0", + "github.com/cilium/ebpf/perf.readRecord[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b58e5e", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b582f0", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11903746" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4228ca", + "lines": [ + "runtime.(*fixalloc).alloc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x431f9e", + "lines": [ + "runtime.(*mheap).allocMSpanLocked[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43221d", + "lines": [ + "runtime.(*mheap).allocSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x431c5b", + "lines": [ + "runtime.(*mheap).alloc.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "268151761" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416b44", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c9b3", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "76831" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42991f", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "841740093" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4871f6", + "lines": [ + "runtime.nanotime1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4819cc", + "lines": [ + "runtime.nanotime[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4819cc", + "lines": [ + "runtime.nanotime[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6e5d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).SymbolizationComplete[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb048", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf2a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "82327273" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x632850", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsHex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x632d96", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsLowerHex[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifierTo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d223e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifier[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1246608" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44e236", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "874451626" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416b44", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x410564", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.chansend[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4104b6", + "lines": [ + "runtime.chansend1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9767", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "20464" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b98e", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x429265", + "lines": [ + "runtime.scanblock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4274f5", + "lines": [ + "runtime.markrootSpans[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x426c4e", + "lines": [ + "runtime.markroot[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428f33", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "212909813" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40d4f5", + "lines": [ + "indexbytebody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48ac4a", + "lines": [ + "internal/stringslite.IndexByte[]@:0", + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "53018650" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4400a4", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ff2", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417128", + "lines": [ + "runtime.notetsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44a4ed", + "lines": [ + "runtime.forEachPInternal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x424abe", + "lines": [ + "runtime.gcMarkTermination.forEachP.func6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1770732922" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b89f04", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).unlinkElement[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b8a144", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b968ec", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getJITInfo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9923e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "212793705" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4785a4", + "lines": [ + "runtime.mapaccess2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "831254" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4320e1", + "lines": [ + "runtime.(*mheap).tryAllocMSpan[]@:0", + "runtime.(*mheap).allocSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x431c5b", + "lines": [ + "runtime.(*mheap).alloc.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3323072" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x561f84", + "lines": [ + "context.(*cancelCtx).Done[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb367", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "47119974" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4786fe", + "lines": [ + "runtime.mapaccess2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d23ac", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "57747222" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42e5ee", + "lines": [ + "runtime.(*sweepLocker).tryAcquire[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42e71e", + "lines": [ + "runtime.sweepone[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42e51e", + "lines": [ + "runtime.bgsweep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x422bc4", + "lines": [ + "runtime.gcenable.gowrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "590959079" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48676c", + "lines": [ + "runtime.memmove[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b59c07", + "lines": [ + "github.com/cilium/ebpf/perf.(*forwardReader).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b59f69", + "lines": [ + "github.com/cilium/ebpf/perf.(*perfEventRing).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4cdc2f", + "lines": [ + "io.ReadAtLeast[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b566b8", + "lines": [ + "io.ReadFull[]@:0", + "github.com/cilium/ebpf/perf.readRecord[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b58e5e", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b582f0", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "762826" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429430", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "243301964" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429479", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "4152893" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477eef", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5a90", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "4015581" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f1b94", + "lines": [ + "time.Now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5a004e", + "lines": [ + "github.com/elastic/go-freelru.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b3a349", + "lines": [ + "github.com/elastic/go-freelru.expire[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).getAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "74091572" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3c40", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "18003" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb4b", + "lines": [ + "linux-vdso.1.so 0xb4b[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48783f", + "lines": [ + "time.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "59104843" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b56a9a", + "lines": [ + "github.com/cilium/ebpf/perf.readRawSample[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b567b1", + "lines": [ + "github.com/cilium/ebpf/perf.readRecord[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b58e5e", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b582f0", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11329252" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43d483", + "lines": [ + "runtime.(*spanSet).push[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41ede4", + "lines": [ + "runtime.(*mcentral).uncacheSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41e27e", + "lines": [ + "runtime.(*mcache).refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417fc4", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d2c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5a90", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "35353919" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x486a0e", + "lines": [ + "runtime.memmove[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b59c07", + "lines": [ + "github.com/cilium/ebpf/perf.(*forwardReader).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b59f69", + "lines": [ + "github.com/cilium/ebpf/perf.(*perfEventRing).Read[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4cdc2f", + "lines": [ + "io.ReadAtLeast[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b56aee", + "lines": [ + "io.ReadFull[]@:0", + "github.com/cilium/ebpf/perf.readRawSample[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b567b1", + "lines": [ + "github.com/cilium/ebpf/perf.readRecord[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b58e5e", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b582f0", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "9056655" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b9f1", + "lines": [ + "runtime.(*mspan).divideByElemSize[]@:0", + "runtime.(*mspan).objIndex[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "429825737" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd59c4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "687926" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bccb3b", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).setHead[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).addWithLifetime[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcc624", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcad84", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "13865821" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bdb", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "252307403" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x455002", + "lines": [ + "runtime.(*guintptr).cas[]@:0", + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1614329" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd5619", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3938558" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477d1c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2286", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11731670" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x752572", + "lines": [ + "apparmor_file_alloc_security[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6dfafe", + "lines": [ + "security_file_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5383", + "lines": [ + "init_file[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e59b9", + "lines": [ + "alloc_empty_file[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fbc36", + "lines": [ + "path_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc9de", + "lines": [ + "do_filp_open[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4defb2", + "lines": [ + "do_sys_openat2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4df474", + "lines": [ + "__x64_sys_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7377", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "35961559" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c5a", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8c44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "970421524" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42945c", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "120795" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd67a9", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).RLock[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "25857358" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b98e", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43ebf0", + "lines": [ + "runtime.wbBufFlush1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x474d9d", + "lines": [ + "runtime.wbBufFlush.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3149730" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd5a6b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8879720" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x426c9b", + "lines": [ + "runtime.readgstatus[]@:0", + "runtime.markroot[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428f33", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "155644992" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4424ca", + "lines": [ + "runtime.popDefer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x442d6b", + "lines": [ + "runtime.(*_panic).nextDefer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4427c7", + "lines": [ + "runtime.deferreturn[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2477", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "20680162" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c5e", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93a48", + "lines": [ + "bytes.NewReader[]@:0", + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "73525021" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x428c82", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "622592339" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4298c0", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3805698" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b9f5", + "lines": [ + "runtime.(*mspan).divideByElemSize[]@:0", + "runtime.(*mspan).objIndex[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12904792" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47a699", + "lines": [ + "runtime.add[]@:0", + "runtime.mapaccess2_fast64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f87", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "44712310" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4400a4", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ff2", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417128", + "lines": [ + "runtime.notetsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x449a5b", + "lines": [ + "runtime.stopTheWorldWithSema[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x423664", + "lines": [ + "runtime.gcStart.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "339840" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd6992", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "9733357" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d3204", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2477", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "23373" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4298e9", + "lines": [ + "runtime.(*gcBits).bitp[]@:0", + "runtime.(*mspan).markBitsForIndex[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "17749" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd5a70", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "61253828" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4defed", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x639293", + "lines": [ + "github.com/cilium/ebpf/internal/unix.Syscall[]@:0", + "github.com/cilium/ebpf/internal/sys.BPF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b0e45", + "lines": [ + "github.com/cilium/ebpf/internal/sys.MapLookupElem[]@:0", + "github.com/cilium/ebpf.(*Map).lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2773024867" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa0e", + "lines": [ + "sync.(*Mutex).Lock[]@:0", + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc43e", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "679619509" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x416cf6", + "lines": [ + "runtime.unlock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44cb1c", + "lines": [ + "runtime.unlockWithRank[]@:0", + "runtime.unlock[]@:0", + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "76329986" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d711", + "lines": [ + "internal/runtime/atomic.(*Bool).Load[]@:0", + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "9139354" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b9f5", + "lines": [ + "runtime.(*mspan).divideByElemSize[]@:0", + "runtime.(*mspan).objIndex[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12842825680" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477aa5", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7cc4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1254914113" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x434149", + "lines": [ + "runtime.(*gcBitsArena).tryAlloc[]@:0", + "runtime.newMarkBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4327a4", + "lines": [ + "runtime.(*mheap).initSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43243c", + "lines": [ + "runtime.(*mheap).allocSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x431c5b", + "lines": [ + "runtime.(*mheap).alloc.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "4208933" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429491", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2061159733" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "412471775" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x568136", + "lines": [ + "sort.Search[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bdf44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ecc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "25012863" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bcc705", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).addWithLifetime[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcc624", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcad84", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "10214871" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477cea", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2286", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "28321403" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x418147", + "lines": [ + "runtime.deductAssistCredit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "77207251" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc509", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3e25", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Set[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7f42", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "71850906" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3c3d", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "251705" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477f18", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2286", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "32241445" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b96f", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "111643" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b983", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "29012" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123f101", + "lines": [ + "down_read_killable[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd15a", + "lines": [ + "mm_access[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44795f", + "lines": [ + "process_vm_rw_core.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x447c7c", + "lines": [ + "process_vm_rw[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x447d16", + "lines": [ + "__x64_sys_process_vm_readv[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e6d", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4df05c", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x573033", + "lines": [ + "golang.org/x/sys/unix.ProcessVMReadv[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c8d37", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.ProcessVirtualMemory.ReadAt[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c954b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.(*ProcessVirtualMemory).ReadAt[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b961b0", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.RemoteMemory.Read[]@:0", + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getMethod[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93ba4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "17540846" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44f4cc", + "lines": [ + "internal/runtime/atomic.(*Uint8).Load[]@:0", + "internal/runtime/atomic.(*Bool).Load[]@:0", + "runtime.reentersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d69e", + "lines": [ + "runtime.entersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de144", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4defed", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x639293", + "lines": [ + "github.com/cilium/ebpf/internal/unix.Syscall[]@:0", + "github.com/cilium/ebpf/internal/sys.BPF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b0e45", + "lines": [ + "github.com/cilium/ebpf/internal/sys.MapLookupElem[]@:0", + "github.com/cilium/ebpf.(*Map).lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "202394937" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a0080", + "lines": [ + "time.Time.UnixMilli[]@:0", + "github.com/elastic/go-freelru.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b3a349", + "lines": [ + "github.com/elastic/go-freelru.expire[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).getAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "9161222" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42947e", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "844935" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d5f3", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "862651321" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa04", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "397066889" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43ec12", + "lines": [ + "runtime.(*gcBits).bitp[]@:0", + "runtime.(*mspan).markBitsForIndex[]@:0", + "runtime.wbBufFlush1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x474d9d", + "lines": [ + "runtime.wbBufFlush.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "198183700" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bef", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1408496621" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fbee", + "lines": [ + "sync.(*Mutex).Unlock[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bf46f", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint32,go.shape.string]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bc0f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.LookupCgroupv2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b44209", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "36781153" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c00a0", + "lines": [ + "unique.addUniqueMap[go.shape.struct { net/netip.isV6 bool; net/netip.zoneV6 string }].func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425bf8", + "lines": [ + "runtime.unique_runtime_registerUniqueMapCleanup.func1[]@:0", + "runtime.unique_runtime_registerUniqueMapCleanup.gowrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "182462437" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44e3b7", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "16719773" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48675e", + "lines": [ + "runtime.memmove[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49a5a5", + "lines": [ + "strconv.formatBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49a36e", + "lines": [ + "strconv.AppendUint[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3b64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "29957752" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4df05c", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x57346e", + "lines": [ + "golang.org/x/sys/unix.EpollWait[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b559f7", + "lines": [ + "github.com/cilium/ebpf/internal/unix.EpollWait[]@:0", + "github.com/cilium/ebpf/internal/epoll.(*Poller).Wait[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b5819e", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2a7b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8626111230" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b921", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x427133", + "lines": [ + "runtime.markrootBlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x426eb6", + "lines": [ + "runtime.markroot[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428f33", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "36852" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41c5d2", + "lines": [ + "runtime.typePointers.next[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11839" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4299e0", + "lines": [ + "runtime.spanClass.noscan[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "89620" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4299cf", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "13201" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b57f33", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "400398253" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477d12", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5a90", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "28728421" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5156aa", + "lines": [ + "fmt.(*pp).fmtString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "897812" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6ce6d6", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).Close[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6704", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6693", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "32713602" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d6f9", + "lines": [ + "runtime.(*randomEnum).next[]@:0", + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "853790617" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47ba01", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "79119" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c1be02", + "lines": [ + "os/signal.(*signalCtx).Done[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb367", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "155477676" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x485426", + "lines": [ + "runtime.procyield[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47ddd3", + "lines": [ + "sync.runtime_doSpin[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49e74b", + "lines": [ + "sync.(*Mutex).lockSlow[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49fa30", + "lines": [ + "sync.(*Mutex).Lock[]@:0", + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391b0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "31055527" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44c448", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "22992659" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x458761", + "lines": [ + "runtime.selectgo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3c9", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "13691465" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122a6d3", + "lines": [ + "exc_page_fault[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400bc6", + "lines": [ + "asm_exc_page_fault[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48658b", + "lines": [ + "runtime.memclrNoHeapPointers[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41ce1a", + "lines": [ + "runtime.(*mspan).initHeapBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41eec7", + "lines": [ + "runtime.(*mcentral).grow[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41ed04", + "lines": [ + "runtime.(*mcentral).cacheSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41e332", + "lines": [ + "runtime.(*mcache).refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417fc4", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d2c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcab8c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "59343" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416b44", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44a651", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.runSafePointFn[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c455", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "773866" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4867f5", + "lines": [ + "runtime.memmove[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801ea", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "34241749" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429451", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3982395310" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fb6e", + "lines": [ + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391f0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "296311" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45e814", + "lines": [ + "__kmalloc_node[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3efdb3", + "lines": [ + "kvmalloc_node[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x313630", + "lines": [ + "map_lookup_elem[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31544b", + "lines": [ + "__sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x315da9", + "lines": [ + "__x64_sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6df5", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4defed", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x639293", + "lines": [ + "github.com/cilium/ebpf/internal/unix.Syscall[]@:0", + "github.com/cilium/ebpf/internal/sys.BPF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b0e45", + "lines": [ + "github.com/cilium/ebpf/internal/sys.MapLookupElem[]@:0", + "github.com/cilium/ebpf.(*Map).lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1659552141" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48acab", + "lines": [ + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "71763628" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x442c20", + "lines": [ + "runtime.(*_panic).nextDefer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2477", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "13138682" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477949", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd653a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.New[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "439052171" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fb81", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5004", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4ead", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "220774452" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d21c1", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "47523" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41cfbe", + "lines": [ + "runtime.(*mspan).heapBitsSmallForAddr[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4293f4", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "57407" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x418140", + "lines": [ + "runtime.deductAssistCredit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd50d8", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "6025376" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "25026601" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40d4fc", + "lines": [ + "indexbytebody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48ac4a", + "lines": [ + "internal/stringslite.IndexByte[]@:0", + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "10491721" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45ef65", + "lines": [ + "kmem_cache_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6dfacd", + "lines": [ + "security_file_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5383", + "lines": [ + "init_file[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e59b9", + "lines": [ + "alloc_empty_file[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fbc36", + "lines": [ + "path_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc9de", + "lines": [ + "do_filp_open[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4defb2", + "lines": [ + "do_sys_openat2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4df474", + "lines": [ + "__x64_sys_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7377", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "608229224" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fb81", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).Unlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bf46f", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint32,go.shape.string]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bc0f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.LookupCgroupv2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b44209", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8245742" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47a1c0", + "lines": [ + "runtime.add[]@:0", + "runtime.mapaccess2_fast32[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6814", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "5121935" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49ec03", + "lines": [ + "sync.(*Pool).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513a1d", + "lines": [ + "fmt.newPrinter[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513faf", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "27844496" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x486640", + "lines": [ + "runtime.memmove[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49a5a5", + "lines": [ + "strconv.formatBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49a36e", + "lines": [ + "strconv.AppendUint[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3b64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11026238" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x459750", + "lines": [ + "runtime.selectgo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3c9", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "418635407" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4299f7", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "10428" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5172b1", + "lines": [ + "fmt.(*pp).printArg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "10953550" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487115", + "lines": [ + "runtime.tgkill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x440d26", + "lines": [ + "runtime.signalM[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x453a99", + "lines": [ + "runtime.preemptM[]@:0", + "runtime.preemptone[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42ac55", + "lines": [ + "runtime.(*gcControllerState).enlistWorker[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4307a4", + "lines": [ + "runtime.(*gcWork).balance[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428ca6", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "10520805" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ec6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b6eb", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "399325551189" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb50", + "lines": [ + "linux-vdso.1.so 0xb50[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48783f", + "lines": [ + "time.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "10985" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd55df", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "33115128" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b8ab22", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).findKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b89ec4", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b8a144", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uintptr,go.shape.*uint8]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b95864", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getMethod[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93ba4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "64579" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47f9b0", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5a90", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1242773765" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b974", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "15812120" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b3a240", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).unlinkElement[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).getAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "36082296" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429422", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "202020618" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x416cf6", + "lines": [ + "runtime.unlock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x411c0b", + "lines": [ + "runtime.unlockWithRank[]@:0", + "runtime.unlock[]@:0", + "runtime.chanparkcommit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e567", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "13791744" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477e18", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5a90", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "6471708" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece5d8", + "lines": [ + "__lock_sock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece693", + "lines": [ + "lock_sock_nested[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd77cd", + "lines": [ + "tcp_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1021551", + "lines": [ + "inet_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec52dc", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3fa2", + "lines": [ + "vfs_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4468", + "lines": [ + "ksys_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e44c8", + "lines": [ + "__x64_sys_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x553d", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dc4fa", + "lines": [ + "syscall.write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fe1d3", + "lines": [ + "syscall.Write[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5e10e4", + "lines": [ + "net.(*netFD).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5f0a04", + "lines": [ + "net.(*conn).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x604c04", + "lines": [ + "net.(*TCPConn).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa2c775", + "lines": [ + "google.golang.org/grpc/internal/transport.(*bufWriter).flushKeepBuffer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa2c5a4", + "lines": [ + "google.golang.org/grpc/internal/transport.(*bufWriter).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x9e8026", + "lines": [ + "golang.org/x/net/http2.(*Framer).endWrite[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x9e91d9", + "lines": [ + "golang.org/x/net/http2.(*Framer).WriteDataPadded[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa0e088", + "lines": [ + "golang.org/x/net/http2.(*Framer).WriteData[]@:0", + "google.golang.org/grpc/internal/transport.(*loopyWriter).processData[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa0c27d", + "lines": [ + "google.golang.org/grpc/internal/transport.(*loopyWriter).run[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xa16071", + "lines": [ + "google.golang.org/grpc/internal/transport.NewHTTP2Client.func6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "15903" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4292b5", + "lines": [ + "runtime.scanblock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x427133", + "lines": [ + "runtime.markrootBlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x426eb6", + "lines": [ + "runtime.markroot[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428f33", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3537879" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c5e", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50c527", + "lines": [ + "os.statNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50c16b", + "lines": [ + "os.Stat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2417", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "17831893" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de165", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dc4fa", + "lines": [ + "syscall.write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fe1d3", + "lines": [ + "syscall.Write[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x507c70", + "lines": [ + "os.(*File).write[]@:0", + "os.(*File).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513ef6", + "lines": [ + "fmt.Fprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d308e", + "lines": [ + "fmt.Printf[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "6233713372" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b98e", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "20395" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5680ea", + "lines": [ + "sort.Search[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bdf44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ecc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1885546" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1be976c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "178655437" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4298e9", + "lines": [ + "runtime.(*gcBits).bitp[]@:0", + "runtime.(*mspan).markBitsForIndex[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1271121708" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4299b4", + "lines": [ + "runtime.pageIndexOf[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "77025079" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bcc875", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).addWithLifetime[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcc624", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcad84", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "196190" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x452cbd", + "lines": [ + "runtime.releasepNoTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x452c5e", + "lines": [ + "runtime.releasep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44ca64", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "27290438" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x442d36", + "lines": [ + "runtime.(*_panic).nextDefer[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4427c7", + "lines": [ + "runtime.deferreturn[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2477", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "32740035" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1be7fcb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "53304345" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7ce", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4dcb64", + "lines": [ + "syscall.pread[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fc36d", + "lines": [ + "syscall.Pread[]@:0", + "internal/poll.(*FD).Pread[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5079ce", + "lines": [ + "os.(*File).pread[]@:0", + "os.(*File).ReadAt[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6cf753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb.(*Table).getEntry[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6cfae4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb.(*Table).lookupCold[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d3538", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb.(*Table).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b33e64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.symbolizeNativeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b331dd", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).setProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b30b36", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.Generate[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46639", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46364", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b479fb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "13079282" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b3a285", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).getAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b99352", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "106297" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4298e9", + "lines": [ + "runtime.(*gcBits).bitp[]@:0", + "runtime.(*mspan).markBitsForIndex[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "10583" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4867e6", + "lines": [ + "runtime.memmove[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x511d29", + "lines": [ + "fmt.(*buffer).writeString[]@:0", + "fmt.(*fmt).padString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x512838", + "lines": [ + "fmt.(*fmt).fmtS[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5156a4", + "lines": [ + "fmt.(*pp).fmtString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5172c5", + "lines": [ + "fmt.(*pp).printArg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "30335131" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x482afd", + "lines": [ + "aeshashbody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47adf9", + "lines": [ + "runtime.mapaccess2_faststr[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ef8", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "6505440" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487057", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "495563775" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c5e", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47f688", + "lines": [ + "runtime.makeslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd50a4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1400922" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6c1280", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint32,go.shape.string]).findKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c0644", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.uint32,go.shape.string]).get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bf457", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint32,go.shape.string]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bc0f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.LookupCgroupv2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b44209", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "16900480" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc43e", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "5712" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477949", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "52147671" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d6e2", + "lines": [ + "runtime.(*randomEnum).next[]@:0", + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "102956753" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b96b", + "lines": [ + "runtime.spanOf[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "443264329" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b58604", + "lines": [ + "sync.(*Mutex).Unlock[]@:0", + "github.com/cilium/ebpf/perf.(*Reader).ReadInto.deferwrap2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b58475", + "lines": [ + "github.com/cilium/ebpf/perf.(*Reader).ReadInto[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be2f9c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "13484762" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429451", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "647030084" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6be006", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x568125", + "lines": [ + "sort.Search[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bdf44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ecc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "24579643" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416b44", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44a651", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.runSafePointFn[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c455", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e804", + "lines": [ + "runtime.goschedImpl[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x45f710", + "lines": [ + "runtime.gopreempt_m[]@:0", + "runtime.newstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4839b9", + "lines": [ + "runtime.morestack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "334786" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x511d6c", + "lines": [ + "fmt.(*fmt).padString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x512838", + "lines": [ + "fmt.(*fmt).fmtS[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5156a4", + "lines": [ + "fmt.(*pp).fmtString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5172c5", + "lines": [ + "fmt.(*pp).printArg[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x519e7d", + "lines": [ + "fmt.(*pp).doPrintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fd2", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "29541" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bdc425", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8167854" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487056", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454ff4", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "50914079" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd66e0", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert.deferwrap1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "4181178" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477949", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2286", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1511814" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd65e2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "68184937" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45502c", + "lines": [ + "runtime.(*guintptr).cas[]@:0", + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "12748322" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429416", + "lines": [ + "runtime.typePointers.nextFast[]@:0", + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1150587049" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc509", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3e25", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Set[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7f42", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "147650954" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b3b0bf", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).hashToPos[]@:0", + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).findKeyNoExpire[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b3a204", + "lines": [ + "github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).getAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391dd", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "53301795" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47f916", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "14043" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391b0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7fe4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "303205985" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6be00c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x568125", + "lines": [ + "sort.Search[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bdf44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ecc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "14650870" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44db25", + "lines": [ + "runtime.pMask.read[]@:0", + "runtime.checkTimersNoP[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44cbd2", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "90659595" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5555be", + "lines": [ + "do_epoll_pwait.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5564a0", + "lines": [ + "__x64_sys_epoll_pwait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x645f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48a764", + "lines": [ + "internal/runtime/syscall.EpollWait[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x43fd11", + "lines": [ + "runtime.netpoll[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44ccc4", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "5625373046" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x454fe2", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x455136", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d8a4", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "26947677" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4548f1", + "lines": [ + "runtime.pMask.set[]@:0", + "runtime.pidleget[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454a12", + "lines": [ + "runtime.pidlegetSpinning[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d5a4", + "lines": [ + "runtime.wakep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4484c4", + "lines": [ + "runtime.ready[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x411bc4", + "lines": [ + "runtime.recv.goready.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "557434629" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42991f", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "569211389" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b98e", + "lines": [ + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3750406814" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bd4", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "54486555" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4794d3", + "lines": [ + "runtime.mapiternext[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4792e7", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd686e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "62712893" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b4449a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "66359" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477949", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x415d2a", + "lines": [ + "runtime.convTnoptr[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcad04", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "723593730" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4838cb", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "85494" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b08fa", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "272060500" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c5e", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1449514269" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41814a", + "lines": [ + "runtime.deductAssistCredit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47793d", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "82691001" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42944b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "968288529" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47796a", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513fe5", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "314266383" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b938d3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "59660" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bbe", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "841831" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d8a5", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "111809340" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40d508", + "lines": [ + "indexbytebody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48ac4a", + "lines": [ + "internal/stringslite.IndexByte[]@:0", + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "163572934" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42949f", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "331724194" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42663d", + "lines": [ + "runtime.limiterEventStamp.typ[]@:0", + "runtime.(*limiterEvent).stop[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4549ae", + "lines": [ + "runtime.pidleget[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x454a12", + "lines": [ + "runtime.pidlegetSpinning[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d5a4", + "lines": [ + "runtime.wakep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44ddfd", + "lines": [ + "runtime.resetspinning[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e28e", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "25437" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b960c1", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getMethod[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93ba4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2748634" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x482ad6", + "lines": [ + "aeshashbody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xbd3a18", + "lines": [ + "type:.hash.go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.TraceAndMetaKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x478610", + "lines": [ + "runtime.mapaccess2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4447b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "16116329" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47b940", + "lines": [ + "runtime.spanOf[]@:0", + "runtime.findObject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42948b", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8649" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4400a4", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416ff2", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417128", + "lines": [ + "runtime.notetsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x453425", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x449e72", + "lines": [ + "runtime.mstart1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x449db5", + "lines": [ + "runtime.mstart0[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4837a4", + "lines": [ + "runtime.mstart[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "95219" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477c5e", + "lines": [ + "runtime.nextFreeFast[]@:0", + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2286", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "157826139" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4794b5", + "lines": [ + "runtime.mapiternext[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4792e7", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd686e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "80692781" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44d6a7", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "105260461" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41ea63", + "lines": [ + "runtime.(*mcentral).cacheSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41e332", + "lines": [ + "runtime.(*mcache).refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417fc4", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d2c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4801d6", + "lines": [ + "runtime.slicebytetostring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d224f", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "22401071" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x416ad7", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c9b3", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "93612435" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42998d", + "lines": [ + "runtime.pageIndexOf[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "816103036" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x513f80", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "562107128" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd587d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "2332629" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4400ef", + "lines": [ + "runtime.futexwakeup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416dc4", + "lines": [ + "runtime.notewakeup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44b9a8", + "lines": [ + "runtime.startm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d62b", + "lines": [ + "runtime.wakep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4484c4", + "lines": [ + "runtime.ready[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x411bc4", + "lines": [ + "runtime.recv.goready.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "28393151" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123f101", + "lines": [ + "down_read_killable[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd15a", + "lines": [ + "mm_access[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44795f", + "lines": [ + "process_vm_rw_core.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x447c7c", + "lines": [ + "process_vm_rw[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x447d16", + "lines": [ + "__x64_sys_process_vm_readv[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e6d", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4df05c", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x573033", + "lines": [ + "golang.org/x/sys/unix.ProcessVMReadv[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c8d37", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.ProcessVirtualMemory.ReadAt[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c954b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.(*ProcessVirtualMemory).ReadAt[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c8601", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.RemoteMemory.Read[]@:0", + "go.opentelemetry.io/ebpf-profiler/remotememory.RemoteMemory.Ptr[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b958bb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getMethod[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93ba4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "25969112" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477d1e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x418284", + "lines": [ + "runtime.newobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd65f7", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.NewReference[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "66847321" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bdb", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "472656487" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45ef65", + "lines": [ + "kmem_cache_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e599f", + "lines": [ + "alloc_empty_file[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fbc36", + "lines": [ + "path_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fc9de", + "lines": [ + "do_filp_open[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4defb2", + "lines": [ + "do_sys_openat2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4df474", + "lines": [ + "__x64_sys_openat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7377", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48a7cd", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de10c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de209", + "lines": [ + "syscall.Syscall6[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4db18f", + "lines": [ + "syscall.openat[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50956a", + "lines": [ + "syscall.Open[]@:0", + "os.open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x50a151", + "lines": [ + "os.openFileNolog.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x509f6d", + "lines": [ + "os.ignoringEINTR[]@:0", + "os.openFileNolog[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x5084fd", + "lines": [ + "os.OpenFile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6c9864", + "lines": [ + "os.Open[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.Open[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4169b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).OpenELF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d24ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/pfelf.(*Reference).GetELF[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11819939" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa1c", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b443e4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/xsync.(*RWMutex[go.shape.map[go.opentelemetry.io/ebpf-profiler/libpf.Origin]go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.KeyToEventMapping]).WLock[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1127781" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b968d8", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).getJITInfo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9923e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "225045373" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122a6d3", + "lines": [ + "exc_page_fault[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400bc6", + "lines": [ + "asm_exc_page_fault[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x486472", + "lines": [ + "runtime.memclrNoHeapPointers[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d9e", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47f688", + "lines": [ + "runtime.makeslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5086", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "531174500" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x482af8", + "lines": [ + "aeshashbody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xbd3a5d", + "lines": [ + "type:.hash.go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.TraceAndMetaKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x478857", + "lines": [ + "runtime.mapassign[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b445cc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "24149840" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x482e60", + "lines": [ + "aeshashbody[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0xbd3a44", + "lines": [ + "type:.hash.go.opentelemetry.io/ebpf-profiler/reporter/internal/samples.TraceAndMetaKey[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x478610", + "lines": [ + "runtime.mapaccess2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4447b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "24878937" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb03", + "lines": [ + "linux-vdso.1.so 0xb03[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48722c", + "lines": [ + "runtime.nanotime1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "443421256" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4779d0", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5b8a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "5326492" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b327f0", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).setProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b30b36", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.Generate[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46639", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46364", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b479fb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "454037" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477f18", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22b2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11995831" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "783820" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43ebbe", + "lines": [ + "runtime.wbBufFlush1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x474d9d", + "lines": [ + "runtime.wbBufFlush.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "429408195" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3d76", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "15047559" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x486640", + "lines": [ + "runtime.memmove[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49a34a", + "lines": [ + "strconv.AppendUint[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3b64", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "86291801" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x455100", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44c804", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "205018463" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd4dbc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "861525" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1be7f30", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "196868" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416b44", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4341c4", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.newMarkBits[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42eef9", + "lines": [ + "runtime.(*sweepLocked).sweep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41ec27", + "lines": [ + "runtime.(*mcentral).cacheSpan[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x41e332", + "lines": [ + "runtime.(*mcache).refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x417fc4", + "lines": [ + "runtime.(*mcache).nextFree[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477d2c", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47fce8", + "lines": [ + "runtime.growslice[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93424", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameFull[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf.(*Trace).AppendFrameID[]@:0", + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b99352", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "6111" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44f4cc", + "lines": [ + "internal/runtime/atomic.(*Uint8).Load[]@:0", + "internal/runtime/atomic.(*Bool).Load[]@:0", + "runtime.reentersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47d69e", + "lines": [ + "runtime.entersyscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4de144", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4defed", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x639293", + "lines": [ + "github.com/cilium/ebpf/internal/unix.Syscall[]@:0", + "github.com/cilium/ebpf/internal/sys.BPF[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b0e45", + "lines": [ + "github.com/cilium/ebpf/internal/sys.MapLookupElem[]@:0", + "github.com/cilium/ebpf.(*Map).lookup[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6b08dd", + "lines": [ + "github.com/cilium/ebpf.(*Map).LookupWithFlags[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7d3a", + "lines": [ + "github.com/cilium/ebpf.(*Map).Lookup[]@:0", + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "59389" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x429459", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "26990" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42995c", + "lines": [ + "runtime.(*mspan).base[]@:0", + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "169809" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44b710", + "lines": [ + "runtime.stopm[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44d15b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e230", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44e64a", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48382d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "27895798" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40d545", + "lines": [ + "internal/bytealg.IndexByteString[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x48ac4a", + "lines": [ + "internal/stringslite.IndexByte[]@:0", + "internal/stringslite.Index[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d2204", + "lines": [ + "strings.Index[]@:0", + "strings.Contains[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "19934586" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41c5aa", + "lines": [ + "runtime.typePointers.next[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "11172" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122715a", + "lines": [ + "sysvec_irq_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140106a", + "lines": [ + "asm_sysvec_irq_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa41", + "lines": [ + "sync/atomic.(*Int32).Add[]@:0", + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391b0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b43f11", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d15e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b935f4", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotMethod).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b93bd2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8557" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x485426", + "lines": [ + "runtime.procyield[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47ddd3", + "lines": [ + "sync.runtime_doSpin[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49e74b", + "lines": [ + "sync.(*Mutex).lockSlow[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49fa30", + "lines": [ + "sync.(*Mutex).Lock[]@:0", + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b391b0", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 },go.shape.*uint8]).GetAndRefresh[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b3280d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).setProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b30b36", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.Generate[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46639", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b46364", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b479fb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "90173803" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487115", + "lines": [ + "runtime.tgkill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x440d26", + "lines": [ + "runtime.signalM[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x453a99", + "lines": [ + "runtime.preemptM[]@:0", + "runtime.preemptone[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42ac55", + "lines": [ + "runtime.(*gcControllerState).enlistWorker[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x430310", + "lines": [ + "runtime.(*gcWork).put[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x429a4d", + "lines": [ + "runtime.greyobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4294ad", + "lines": [ + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x42535d", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "199008079" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x632a10", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsHex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x632d96", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.putUint64AsLowerHex[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifierTo[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d223e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.marshalIdentifier[]@:0", + "go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128.StringNoQuotes[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "179808489" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd3bce", + "lines": [ + "hash/fnv.(*sum128a).Write[]@:0", + "go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6479", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "19014514" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4fab40", + "lines": [ + "internal/poll.(*FD).writeUnlock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4fe2d2", + "lines": [ + "internal/poll.(*FD).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x507c70", + "lines": [ + "os.(*File).write[]@:0", + "os.(*File).Write[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513ef6", + "lines": [ + "fmt.Fprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d308e", + "lines": [ + "fmt.Printf[]@:0", + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "5406" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b4449a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b4d83e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcaf18", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "64159812" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xabc", + "lines": [ + "linux-vdso.1.so 0xabc[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0x48782d", + "lines": [ + "time.now[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "3893209" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b938d3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotJITInfo).symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1b9926d", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "42991074" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bd4c89", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "158173" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4780a0", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x477544", + "lines": [ + "runtime.convTstring[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22b2", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "218610096" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477954", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x415e3a", + "lines": [ + "runtime.convT32[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6529", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.NewProcessVirtualMemory[]@:0", + "go.opentelemetry.io/ebpf-profiler/process.New[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "8591661" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x568143", + "lines": [ + "sort.Search[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6bdf44", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/libpf.(*SymbolMap).LookupByAddress[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be7ecc", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be8e0e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be9753", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1be302a", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.startPollingPerfEventMonitor.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "398775261" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x487642", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44002f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x416b44", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x44a651", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.runSafePointFn[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "109906" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40dd8c", + "lines": [ + "internal/chacha8rand.block[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x40d7c4", + "lines": [ + "internal/chacha8rand.(*State).Refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x40d7c4", + "lines": [ + "internal/chacha8rand.(*State).Refill[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x47de2f", + "lines": [ + "runtime.rand[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x479284", + "lines": [ + "runtime.mapiterinit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd686e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "4403088" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49fa6e", + "lines": [ + "sync.(*RWMutex).Lock[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bdc43e", + "lines": [ + "github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd3d68", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5622", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "500830319" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42935a", + "lines": [ + "runtime.arenaIndex[]@:0", + "runtime.spanOfUnchecked[]@:0", + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4274d1", + "lines": [ + "runtime.markrootSpans[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x426c4e", + "lines": [ + "runtime.markroot[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428f33", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425409", + "lines": [ + "runtime.gcDrainMarkWorkerDedicated[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "19649" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42941a", + "lines": [ + "runtime.typePointers.nextFast[]@:0", + "runtime.scanobject[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x428d53", + "lines": [ + "runtime.gcDrain[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x425326", + "lines": [ + "runtime.gcDrainMarkWorkerIdle[]@:0", + "runtime.gcBgMarkWorker.func2[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x4838a9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "943253875" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x477b86", + "lines": [ + "runtime.mallocgc[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x415e3a", + "lines": [ + "runtime.convT32[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6529", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/remotememory.NewProcessVirtualMemory[]@:0", + "go.opentelemetry.io/ebpf-profiler/process.New[]@:0", + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "26714703" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47a540", + "lines": [ + "runtime.mapaccess2_fast64[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd56c5", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "547709836" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47dccb", + "lines": [ + "runtime.procPin[]@:0", + "sync.runtime_procPin[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x49ebfb", + "lines": [ + "sync.(*Pool).Get[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513a1d", + "lines": [ + "fmt.newPrinter[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x513faf", + "lines": [ + "fmt.Sprintf[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x6d22ea", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/symb/cache.(*FSCache).Convert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd6684", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbConvert[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd580e", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "21671" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b9931c", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/interpreter/hotspot.(*hotspotInstance).Symbolize[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd4dda", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bd5fcf", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcacae", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x1bcb3f3", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + }, + { + "address": "0x485860", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x403000-0x1d74000@0x3000 ___2go_build_go_opentelemetry_io_ebpf_profiler(25dd4a2df85a27ee9aa6f8eac003de7d9fec555e)" + } + ], + "values": "1168023435" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45dad4", + "lines": [ + "kmem_cache_alloc_node[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed6413", + "lines": [ + "__alloc_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd62c7", + "lines": [ + "tcp_stream_alloc_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd6e13", + "lines": [ + "tcp_sendmsg_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd77db", + "lines": [ + "tcp_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10858e1", + "lines": [ + "inet6_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec5294", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e00e8", + "lines": [ + "do_iter_readv_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1820", + "lines": [ + "vfs_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1ae7", + "lines": [ + "do_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1b7b", + "lines": [ + "__x64_sys_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70b6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91b4", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x91b4[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(int, long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5836872" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x129fa1", + "lines": [ + "epoll_pwait2[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5f83", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x5f83[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait0(int, long, int, int, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWait(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "336433749" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.AbstractCoalescingBufferQueue.remove(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator, int, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.CoalescingBufferQueue.remove(int, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.writeAllocatedBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.write(io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2Stream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.write(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb2", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distributeToChildren(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "73195118" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.freeChunk(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolArena$SizeClass, java.nio.ByteBuffer, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.release(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.safeRelease(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "37895" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "long java.util.concurrent.atomic.AtomicLong.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "41437378" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece65a", + "lines": [ + "lock_sock_nested[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd77cd", + "lines": [ + "tcp_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10858e1", + "lines": [ + "inet6_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec5294", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e00e8", + "lines": [ + "do_iter_readv_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1820", + "lines": [ + "vfs_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1ae7", + "lines": [ + "do_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1b7b", + "lines": [ + "__x64_sys_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70b6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91b4", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x91b4[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(int, long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14200" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "int io.grpc.netty.shaded.io.netty.util.internal.shaded.org.jctools.queues.MpscChunkedArrayQueue.drain(io.grpc.netty.shaded.io.netty.util.internal.shaded.org.jctools.queues.MessagePassingQueue$Consumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.util.Recycler$DefaultHandle io.grpc.netty.shaded.io.netty.util.Recycler$LocalPool.claim()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object io.grpc.netty.shaded.io.netty.util.Recycler.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object io.grpc.netty.shaded.io.netty.util.internal.ObjectPool$RecyclerObjectPool.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledUnsafeDirectByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledUnsafeDirectByteBuf.newInstance(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena$DirectArena.newByteBuf(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.buffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2FrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2OutboundFrameLogger.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.DecoratingHttp2FrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler$WriteMonitoringFrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.writeAllocatedBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.write(io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2Stream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.write(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb2", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distributeToChildren(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11696231" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void java.util.concurrent.atomic.AtomicLongFieldUpdater$CASUpdater.accessCheck(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "long java.util.concurrent.atomic.AtomicLongFieldUpdater$CASUpdater.getAndAdd(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "long java.util.concurrent.atomic.AtomicLongFieldUpdater$CASUpdater.addAndGet(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.decrementPendingOutboundBytes(long, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "831743" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2OutboundFrameLogger.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.DecoratingHttp2FrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler.sendGrpcFrame(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.grpc.netty.SendGrpcFrameCommand, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeWrite(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.AbstractChannel.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.SendGrpcFrameCommand.run(io.grpc.netty.shaded.io.netty.channel.Channel)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "133751414" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec950", + "lines": [ + "__GI___clock_gettime[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13205", + "lines": [ + "os::javaTimeNanos()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "long java.lang.System.nanoTime()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15468" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "201862624" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x101def1", + "lines": [ + "LinuxWaitBarrier::wait(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb28b1", + "lines": [ + "SafepointSynchronize::block(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdbadfe", + "lines": [ + "SafepointMechanism::process(JavaThread*, bool, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb3d49", + "lines": [ + "ThreadSafepointState::handle_polling_page_exception()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb3ecd", + "lines": [ + "SafepointSynchronize::handle_polling_page_exception(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xbbe75b763de09db9", + "lines": [ + "SafepointBlob[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListener0(io.grpc.netty.shaded.io.netty.util.concurrent.Future, io.grpc.netty.shaded.io.netty.util.concurrent.GenericFutureListener)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners0(io.grpc.netty.shaded.io.netty.util.concurrent.DefaultFutureListeners)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListenersNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setValue0(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.trySuccess()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2CodecUtil$SimpleChannelPromiseAggregator.tryPromise()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2CodecUtil$SimpleChannelPromiseAggregator.trySuccess(java.lang.Void)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2CodecUtil$SimpleChannelPromiseAggregator.trySuccess(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.PromiseNotificationUtil.trySuccess(io.grpc.netty.shaded.io.netty.util.concurrent.Promise, java.lang.Object, io.grpc.netty.shaded.io.netty.util.internal.logging.InternalLogger)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.safeSuccess(io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "96202" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean java.util.concurrent.atomic.AtomicIntegerFieldUpdater$AtomicIntegerFieldUpdaterImpl.compareAndSet(java.lang.Object, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.setWritable(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.decrementPendingOutboundBytes(long, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "29152693" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "137102584" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x985df", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129fb2", + "lines": [ + "epoll_pwait2[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5f83", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x5f83[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait0(int, long, int, int, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWait(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "108413" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x129fa0", + "lines": [ + "epoll_pwait2[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5f83", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x5f83[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait0(int, long, int, int, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWait(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1288580309" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.isReadable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.fireChannelRead(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xeb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11414442" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolSubpage.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolChunk.free(long, int, java.nio.ByteBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolChunkList.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, long, int, java.nio.ByteBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.freeChunk(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolArena$SizeClass, java.nio.ByteBuffer, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.release(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.safeRelease(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "59449" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x628d03", + "lines": [ + "ClassLoaderData::holder() const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdafca7", + "lines": [ + "OptoRuntime::new_instance_C(Klass*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x73811453d219e5bf", + "lines": [ + "_new_instance_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPromise io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.newPromise()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.writeAllocatedBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.write(io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2Stream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.write(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb2", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distributeToChildren(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "53387530" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb6", + "lines": [ + "long io.grpc.netty.shaded.io.netty.buffer.LongLongHashMap.put(long, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolChunk.insertAvailRun0(int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolChunk.insertAvailRun(int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolChunk.free(long, int, java.nio.ByteBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolChunkList.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, long, int, java.nio.ByteBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.freeChunk(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolArena$SizeClass, java.nio.ByteBuffer, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.CompositeByteBuf$Component.free()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.CompositeByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.release(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.safeRelease(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "363918382" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.readableBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2FrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2OutboundFrameLogger.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.DecoratingHttp2FrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler$WriteMonitoringFrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.writeAllocatedBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.write(io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2Stream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.write(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb2", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distributeToChildren(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "235766869" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.total(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.addMessage(java.lang.Object, int, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeWrite(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdb", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2FrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2OutboundFrameLogger.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.DecoratingHttp2FrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler$WriteMonitoringFrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.writeAllocatedBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.write(io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2Stream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.write(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb2", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distributeToChildren(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "142565032" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2CodecUtil$SimpleChannelPromiseAggregator.tryPromise()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2CodecUtil$SimpleChannelPromiseAggregator.trySuccess(java.lang.Void)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2CodecUtil$SimpleChannelPromiseAggregator.trySuccess(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.PromiseNotificationUtil.trySuccess(io.grpc.netty.shaded.io.netty.util.concurrent.Promise, java.lang.Object, io.grpc.netty.shaded.io.netty.util.internal.logging.InternalLogger)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.safeSuccess(io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "149391" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PooledUnsafeDirectByteBuf.hasMemoryAddress()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.unix.UnixChannelUtil.isBufferCopyNeededForWrite(io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.unix.UnixChannelUtil.isBufferCopyNeededForWrite(io.grpc.netty.shaded.io.netty.buffer.ByteBuf)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.filterOutboundMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeWrite(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdb", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2FrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2OutboundFrameLogger.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.handler.codec.http2.DecoratingHttp2FrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler$WriteMonitoringFrameWriter.writeData(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder$FlowControlledData.write(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.writeAllocatedBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.write(io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2Stream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.write(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb2", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distributeToChildren(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7782983" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "io.grpc.netty.shaded.io.netty.util.ReferenceCounted io.grpc.netty.shaded.io.netty.buffer.DefaultByteBufHolder.touch(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.touch(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.touch(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.AbstractChannel.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.SendGrpcFrameCommand.run(io.grpc.netty.shaded.io.netty.channel.Channel)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "27932" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45dad4", + "lines": [ + "kmem_cache_alloc_node[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed6413", + "lines": [ + "__alloc_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd62c7", + "lines": [ + "tcp_stream_alloc_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd6e13", + "lines": [ + "tcp_sendmsg_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd77db", + "lines": [ + "tcp_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10858e1", + "lines": [ + "inet6_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec5294", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e00e8", + "lines": [ + "do_iter_readv_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1820", + "lines": [ + "vfs_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1ae7", + "lines": [ + "do_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1b7b", + "lines": [ + "__x64_sys_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70b6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91b4", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x91b4[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(int, long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10557994" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb03", + "lines": [ + "linux-vdso.1.so 0xb03[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0xec96c", + "lines": [ + "__GI___clock_gettime[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13205", + "lines": [ + "os::javaTimeNanos()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "long java.lang.System.nanoTime()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7178704" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x554e9a", + "lines": [ + "ep_send_events[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55526a", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5555be", + "lines": [ + "do_epoll_pwait.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555a77", + "lines": [ + "__x64_sys_epoll_pwait2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72d2", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x129fa0", + "lines": [ + "epoll_pwait2[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5f83", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x5f83[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait0(int, long, int, int, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWait(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "725191242" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x129fa9", + "lines": [ + "epoll_pwait2[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5f83", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x5f83[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait0(int, long, int, int, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWait(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11375142" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.unlock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.unlock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x66", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.freeChunk(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolArena$SizeClass, java.nio.ByteBuffer, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.release(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.safeRelease(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15666296" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa00f0", + "lines": [ + "lll_mutex_lock_optimized[]@:0", + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcba8f5", + "lines": [ + "Mutex::lock_without_safepoint_check()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x63f322", + "lines": [ + "DefaultICProtectionBehaviour::lock(CompiledMethod*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x6839c1", + "lines": [ + "CompiledICLocker::CompiledICLocker(CompiledMethod*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc1d38", + "lines": [ + "SharedRuntime::resolve_sub_helper_internal(methodHandle, frame const\u0026, CompiledMethod*, bool, bool, Handle, CallInfo\u0026, Bytecodes::Code, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc5ca2", + "lines": [ + "SharedRuntime::resolve_sub_helper(bool, bool, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc5da7", + "lines": [ + "SharedRuntime::resolve_helper(bool, bool, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc62fe", + "lines": [ + "SharedRuntime::resolve_opt_virtual_call_C(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xedb6be84e687015d", + "lines": [ + "resolve_opt_virtual_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolSubpage.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolChunk.free(long, int, java.nio.ByteBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolChunkList.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, long, int, java.nio.ByteBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.freeChunk(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolArena$SizeClass, java.nio.ByteBuffer, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.release(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.safeRelease(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "6845" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d2", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "60763" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91b4", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x91b4[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(int, long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor.writevAddresses(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "780991814" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.freeChunk(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolArena$SizeClass, java.nio.ByteBuffer, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.CompositeByteBuf$Component.free()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.CompositeByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.release(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.ReferenceCountUtil.safeRelease(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.remove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer.removeBytes(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer, io.grpc.netty.shaded.io.netty.channel.unix.IovArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(io.grpc.netty.shaded.io.netty.channel.ChannelOutboundBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.flush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "146082" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.activeCountChangeForTree(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.updateStreamableBytes(int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.updateStreamableBytes(io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$StreamState)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.incrementStreamWindow(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.decrementFlowControlWindow(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xef", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$FlowState.writeAllocatedBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.write(io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2Stream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State.write(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb2", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distributeToChildren(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer, io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.handler.codec.http2.WeightedFairQueueByteDistributor.distribute(int, io.grpc.netty.shaded.io.netty.handler.codec.http2.StreamByteDistributor$Writer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController$WritabilityMonitor.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2RemoteFlowController.writePendingBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "286985520" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.fireChannelRead(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xeb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "63508" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "86944101" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5555be", + "lines": [ + "do_epoll_pwait.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555a77", + "lines": [ + "__x64_sys_epoll_pwait2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72d2", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x129fa0", + "lines": [ + "epoll_pwait2[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5f83", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x5f83[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait0(int, long, int, int, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, int, int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "long io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWait(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "46635592977" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.AbstractChannel.write(java.lang.Object, io.grpc.netty.shaded.io.netty.channel.ChannelPromise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.SendGrpcFrameCommand.run(io.grpc.netty.shaded.io.netty.channel.Channel)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "143114567" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x985d9", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x12a054", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4c5f", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4c5f[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7309535" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4c5f", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4c5f[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "444820086" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "io.grpc.netty.shaded.io.netty.util.concurrent.ScheduledFutureTask io.grpc.netty.shaded.io.netty.util.concurrent.AbstractScheduledEventExecutor.peekScheduledTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "long io.grpc.netty.shaded.io.netty.util.concurrent.AbstractScheduledEventExecutor.nextScheduledTaskDeadlineNanos()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "63857754" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.unix.PreferredDirectByteBufAllocator.ioBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.DefaultMaxMessagesRecvByteBufAllocator$MaxMessageHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.epoll.EpollRecvByteAllocatorHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "68876159" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a042", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4c5f", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4c5f[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11036793" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void io.grpc.internal.StatsTraceContext.inboundMessage(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "void io.grpc.internal.MessageDeframer.processHeader()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void io.grpc.internal.MessageDeframer.deliver()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void io.grpc.internal.MessageDeframer.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState$1RequestRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "149143823" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x554e9a", + "lines": [ + "ep_send_events[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55526a", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4c5f", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4c5f[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "116545" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object io.grpc.netty.shaded.io.netty.util.Recycler.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object io.grpc.netty.shaded.io.netty.util.internal.ObjectPool$RecyclerObjectPool.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledUnsafeDirectByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledUnsafeDirectByteBuf.newInstance(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena$DirectArena.newByteBuf(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.unix.PreferredDirectByteBufAllocator.ioBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.DefaultMaxMessagesRecvByteBufAllocator$MaxMessageHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.epoll.EpollRecvByteAllocatorHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3794417" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.internal.MessageDeframer.deliver()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void io.grpc.internal.MessageDeframer.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState$1RequestRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "165563" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "41078" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4c5f", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4c5f[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "49061091209" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.flush(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.channelReadComplete(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.fireChannelReadComplete()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.channelReadComplete(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.fireChannelReadComplete()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "8759177" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.internal.CompositeReadableBuffer.advanceBuffer()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void io.grpc.internal.CompositeReadableBuffer.advanceBufferIfNecessary()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer.execute(io.grpc.internal.CompositeReadableBuffer$ReadOperation, int, java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer.executeNoThrow(io.grpc.internal.CompositeReadableBuffer$NoThrowReadOperation, int, java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer.readUnsignedByte()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int io.grpc.internal.AbstractReadableBuffer.readInt()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void io.grpc.internal.MessageDeframer.processHeader()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void io.grpc.internal.MessageDeframer.deliver()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void io.grpc.internal.MessageDeframer.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState$1RequestRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15984962" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c72", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4c72[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2375222" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10682189" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState$1RequestRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "54503" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc3", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "487960931" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache$SubPageMemoryRegionCache.initBuf(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache$MemoryRegionCache.allocate(io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache$MemoryRegionCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache.allocateSmall(io.grpc.netty.shaded.io.netty.buffer.PoolArena, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.tcacheAllocateSmall(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.unix.PreferredDirectByteBufAllocator.ioBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.DefaultMaxMessagesRecvByteBufAllocator$MaxMessageHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.epoll.EpollRecvByteAllocatorHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "16449001" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x129ff0", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4c5f", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4c5f[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10361199" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05f", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean java.util.concurrent.SynchronousQueue.offer(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.internal.SerializingExecutor.schedule(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void io.grpc.internal.SerializingExecutor.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.messagesAvailable(io.grpc.internal.StreamListener$MessageProducer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.internal.RetriableStream$Sublistener$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void io.grpc.SynchronizationContext.drain()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.SynchronizationContext.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void io.grpc.internal.RetriableStream$Sublistener.messagesAvailable(io.grpc.internal.StreamListener$MessageProducer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.internal.ForwardingClientStreamListener.messagesAvailable(io.grpc.internal.StreamListener$MessageProducer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState.messagesAvailable(io.grpc.internal.StreamListener$MessageProducer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "void io.grpc.internal.MessageDeframer.processBody()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void io.grpc.internal.MessageDeframer.deliver()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void io.grpc.internal.MessageDeframer.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState$1RequestRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50018677" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.isShuttingDown()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1dd", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5537274" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.unix.PreferredDirectByteBufAllocator.ioBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.DefaultMaxMessagesRecvByteBufAllocator$MaxMessageHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.epoll.EpollRecvByteAllocatorHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "26509105" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7659cd", + "lines": [ + "begin_current_label_crit_section[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x767125", + "lines": [ + "aa_inet_msg_perm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x74e935", + "lines": [ + "apparmor_socket_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e2423", + "lines": [ + "security_socket_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4814", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec742a", + "lines": [ + "__sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec7503", + "lines": [ + "__x64_sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6fb7", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bc19", + "lines": [ + "__libc_recv[]@:0", + "__libc_recv[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xb58e", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0xb58e[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel.doReadBytes(io.grpc.netty.shaded.io.netty.buffer.ByteBuf)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2737041" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.internal.AbstractClientStream$TransportState.inboundDataReceived(io.grpc.internal.ReadableBuffer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7b", + "lines": [ + "void io.grpc.internal.Http2ClientStreamTransportState.transportDataReceived(io.grpc.internal.ReadableBuffer, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyClientStream$TransportState.transportDataReceived(io.grpc.netty.shaded.io.netty.buffer.ByteBuf, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyClientHandler.onDataRead(int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyClientHandler.access$1200(io.grpc.netty.shaded.io.grpc.netty.NettyClientHandler, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int io.grpc.netty.shaded.io.grpc.netty.NettyClientHandler$FrameListener.onDataRead(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x165", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2ConnectionDecoder$FrameReadListener.onDataRead(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "int io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2InboundFrameLogger$1.onDataRead(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, int, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2FrameReader.readDataFrame(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, int, io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2FrameListener)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2FrameReader.processPayloadState(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2FrameListener)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2FrameReader.readFrame(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2FrameListener)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2InboundFrameLogger.readFrame(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2FrameListener)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.DefaultHttp2ConnectionDecoder.decodeFrame(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler$FrameDecoder.decode(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2ConnectionHandler.decode(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, io.grpc.netty.shaded.io.netty.buffer.ByteBuf, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "void io.grpc.netty.shaded.io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.fireChannelRead(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xeb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "54866969" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache$MemoryRegionCache.allocate(io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache$MemoryRegionCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache.allocateSmall(io.grpc.netty.shaded.io.netty.buffer.PoolArena, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.tcacheAllocateSmall(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.unix.PreferredDirectByteBufAllocator.ioBuffer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.DefaultMaxMessagesRecvByteBufAllocator$MaxMessageHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.channel.epoll.EpollRecvByteAllocatorHandle.allocate(io.grpc.netty.shaded.io.netty.buffer.ByteBufAllocator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "302697" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xee2f27", + "lines": [ + "__skb_datagram_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xee3196", + "lines": [ + "skb_copy_datagram_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd88c9", + "lines": [ + "tcp_recvmsg_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd9be3", + "lines": [ + "tcp_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1085983", + "lines": [ + "inet6_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4852", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec742a", + "lines": [ + "__sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec7503", + "lines": [ + "__x64_sys_recvfrom[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6fb7", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bc19", + "lines": [ + "__libc_recv[]@:0", + "__libc_recv[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xb58e", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0xb58e[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel.doReadBytes(io.grpc.netty.shaded.io.netty.buffer.ByteBuf)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "525811" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.access$000(io.grpc.netty.shaded.io.grpc.netty.WriteQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "46077579" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "io.grpc.internal.ReadableBuffer io.grpc.netty.shaded.io.grpc.netty.NettyReadableBuffer.readBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "io.grpc.internal.ReadableBuffer io.grpc.internal.CompositeReadableBuffer.readBytes(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18a", + "lines": [ + "boolean io.grpc.internal.MessageDeframer.readRequiredBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.internal.MessageDeframer.deliver()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void io.grpc.internal.MessageDeframer.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState$1RequestRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "19407220" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "69535088" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bc19", + "lines": [ + "__libc_recv[]@:0", + "__libc_recv[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xb58e", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0xb58e[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.unix.Socket.recvAddress(long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel.doReadBytes(io.grpc.netty.shaded.io.netty.buffer.ByteBuf)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "703865481" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean java.util.concurrent.SynchronousQueue.offer(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void io.grpc.internal.SerializingExecutor.schedule(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void io.grpc.internal.SerializingExecutor.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.messagesAvailable(io.grpc.internal.StreamListener$MessageProducer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void io.grpc.internal.RetriableStream$Sublistener$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void io.grpc.SynchronizationContext.drain()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void io.grpc.SynchronizationContext.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void io.grpc.internal.RetriableStream$Sublistener.messagesAvailable(io.grpc.internal.StreamListener$MessageProducer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.internal.ForwardingClientStreamListener.messagesAvailable(io.grpc.internal.StreamListener$MessageProducer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState.messagesAvailable(io.grpc.internal.StreamListener$MessageProducer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "void io.grpc.internal.MessageDeframer.processBody()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void io.grpc.internal.MessageDeframer.deliver()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void io.grpc.internal.MessageDeframer.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState$1RequestRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "33607039" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean io.grpc.internal.MessageDeframer.readRequiredBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void io.grpc.internal.MessageDeframer.deliver()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void io.grpc.internal.MessageDeframer.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState$1RequestRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x194", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "171631145" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec95b", + "lines": [ + "__GI___clock_gettime[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13205", + "lines": [ + "os::javaTimeNanos()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x151", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "6049" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.Native.epollWait(io.grpc.netty.shaded.io.netty.channel.unix.FileDescriptor, io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb9", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "31782227" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "343797653" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "java.lang.CharSequence kotlin.text.StringsKt__StringsKt.trim(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter.parseNativeStackTraceLine(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter.access$parseNativeStackTraceLine(org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter, java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter$applyFilter$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter$applyFilter$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction$lambda$3(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ActionsKt$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "65535" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15952" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "441557559" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "int com.intellij.openapi.util.text.Strings.indexOf(java.lang.CharSequence, java.lang.CharSequence, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "int com.intellij.openapi.util.text.Strings.indexOf(java.lang.CharSequence, java.lang.CharSequence, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "int com.intellij.openapi.util.text.Strings.indexOf(java.lang.CharSequence, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "int com.intellij.openapi.util.text.StringUtil.indexOf(java.lang.CharSequence, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.gradle.execution.GradleConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "390966130" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "int java.lang.Character.codePointAt(java.lang.CharSequence, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "162533800" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "592346726" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "com.intellij.execution.filters.ExceptionInfo com.intellij.execution.filters.ExceptionInfo.parseMessage(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.ExceptionFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter.access$applyFilter$s1178634375(org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter, java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter$applyFilter$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter$applyFilter$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction$lambda$3(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ActionsKt$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.debugger.core.KotlinExceptionFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "115092889" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "151437744" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98fc6", + "lines": [ + "__GI___lll_lock_wake[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa1ac1", + "lines": [ + "lll_mutex_unlock_optimized[]@:0", + "__GI___pthread_mutex_unlock_usercnt[]@:0", + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13eec", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "boolean com.intellij.openapi.progress.impl.CoreProgressManager.sleepIfNeededToGivePriorityToAnotherThread()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean com.intellij.openapi.progress.impl.ProgressManagerImpl.runCheckCanceledHooks(com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "87970" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$Start.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb7", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "811816467" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.CharPredicates$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x78", + "lines": [ + "boolean java.util.regex.Pattern$Caret.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x78", + "lines": [ + "boolean java.util.regex.Pattern$Caret.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1115251007" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1150619789" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "10808669" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean java.util.regex.Pattern.lambda$negate$7(java.util.regex.Pattern$CharPredicate, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "620898927" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "194191424" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "16974" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Slice.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "com.jetbrains.python.traceBackParsers.LinkInTrace com.jetbrains.python.traceBackParsers.TraceBackParserAdapter.findLinkInTrace(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.jetbrains.python.run.PythonTracebackFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "186112916" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "968055871" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "140786" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "int java.lang.Character.codePointAt(java.lang.CharSequence, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "13795" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "35997786" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void com.intellij.openapi.util.text.StringUtil$BombedCharSequence.check()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean java.util.regex.Pattern.lambda$union$3(java.util.regex.Pattern$CharPredicate, java.util.regex.Pattern$CharPredicate, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean java.util.regex.Pattern.lambda$union$3(java.util.regex.Pattern$CharPredicate, java.util.regex.Pattern$CharPredicate, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "510976957" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "301776205" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "160702096" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "367544548" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "30102680" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "405988288" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1425804503" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5817" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "139068171" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122715a", + "lines": [ + "sysvec_irq_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140106a", + "lines": [ + "asm_sysvec_irq_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10821" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "boolean java.util.regex.Pattern$Slice.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "953921418" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "24104407" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5613" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "boolean kotlin.jvm.internal.Intrinsics.areEqual(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CoroutineContext$Element$DefaultImpls.get(kotlin.coroutines.CoroutineContext$Element, kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.AbstractCoroutineContextElement.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "kotlinx.coroutines.Job com.intellij.openapi.progress.Cancellation.currentJob()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.progress.Cancellation.checkCancelled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "470499174" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "219804452" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean java.util.regex.Pattern.lambda$union$3(java.util.regex.Pattern$CharPredicate, java.util.regex.Pattern$CharPredicate, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean java.util.regex.Pattern.lambda$union$3(java.util.regex.Pattern$CharPredicate, java.util.regex.Pattern$CharPredicate, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean java.util.regex.Pattern.lambda$union$3(java.util.regex.Pattern$CharPredicate, java.util.regex.Pattern$CharPredicate, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "78493590" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "boolean java.util.regex.Pattern$Slice.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "boolean java.util.regex.Pattern$CharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "481701035" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.lang.Object.equals(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "933841516" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "487346600" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14237020" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7870409" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.AbstractCoroutineContextElement.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "kotlinx.coroutines.Job com.intellij.openapi.progress.Cancellation.currentJob()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.progress.Cancellation.checkCancelled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "149768772" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x101def1", + "lines": [ + "LinuxWaitBarrier::wait(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb28b1", + "lines": [ + "SafepointSynchronize::block(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdbadfe", + "lines": [ + "SafepointMechanism::process(JavaThread*, bool, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb3d49", + "lines": [ + "ThreadSafepointState::handle_polling_page_exception()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb3ecd", + "lines": [ + "SafepointSynchronize::handle_polling_page_exception(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xbbe75b763de09db9", + "lines": [ + "SafepointBlob[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "boolean java.util.regex.Pattern$Slice.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15762" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14445" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.match(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "boolean java.util.regex.Matcher.matches()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.idea.maven.project.MavenTestConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "181042466" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1928635" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "455348911" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "353828761" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "426671938" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "271528927" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d61", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "boolean com.intellij.openapi.progress.impl.CoreProgressManager.sleepIfNeededToGivePriorityToAnotherThread()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean com.intellij.openapi.progress.impl.ProgressManagerImpl.runCheckCanceledHooks(com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "317164072" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Slice.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$Start.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "boolean java.util.regex.Matcher.find(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.text.MatchResult kotlin.text.RegexKt.findNext(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "kotlin.text.MatchResult kotlin.text.RegexKt.access$findNext(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "kotlin.text.MatchResult kotlin.text.Regex.find(java.lang.CharSequence, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.text.MatchResult kotlin.text.Regex.find$default(kotlin.text.Regex, java.lang.CharSequence, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.kotlin.idea.run.KotlinConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "51182" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Caret.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "106326184" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "boolean java.util.regex.Pattern$CharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "40014127" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.CharPredicates$$Lambda+\u003chidden\u003e.is(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5600855386" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "com.intellij.openapi.util.Pair com.intellij.execution.filters.PatternBasedFileHyperlinkRawDataFinder.findMatcher(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.util.List com.intellij.execution.filters.PatternBasedFileHyperlinkRawDataFinder.find(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.util.List com.intellij.javascript.nodejs.filter.WebpackErrorLinkFinder.find(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.util.List com.intellij.javascript.nodejs.filter.WebpackErrorFilter.parse(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.AbstractFileHyperlinkFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "368161676" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Caret.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.execution.filters.Filter$Result org.jetbrains.plugins.groovy.execution.filters.GrCompilationErrorsFilterProvider$getDefaultFilters$1.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "755038030" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "74319206" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "com.jetbrains.python.traceBackParsers.LinkInTrace com.jetbrains.python.traceBackParsers.TraceBackParserAdapter.findLinkInTrace(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.jetbrains.python.run.PythonTracebackFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14798169" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "338706141" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1005554587" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "com.jetbrains.python.traceBackParsers.LinkInTrace com.jetbrains.python.traceBackParsers.TraceBackParserAdapter.findLinkInTrace(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.jetbrains.python.run.PythonTracebackFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "765160312" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "boolean com.intellij.openapi.progress.impl.CoreProgressManager.sleepIfNeededToGivePriorityToAnotherThread()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean com.intellij.openapi.progress.impl.ProgressManagerImpl.runCheckCanceledHooks(com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10294674" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98", + "lines": [ + "java.lang.Object java.util.concurrent.ConcurrentHashMap.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean java.util.concurrent.ConcurrentHashMap.containsKey(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean java.util.concurrent.ConcurrentHashMap$KeySetView.contains(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean com.intellij.openapi.progress.impl.CoreProgressManager.isCurrentThreadPrioritized()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.progress.impl.CoreProgressManager.isCurrentThreadEffectivelyPrioritized()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean com.intellij.openapi.progress.impl.CoreProgressManager.sleepIfNeededToGivePriorityToAnotherThread()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean com.intellij.openapi.progress.impl.ProgressManagerImpl.runCheckCanceledHooks(com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1028664869" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "char com.intellij.openapi.util.text.StringUtil$BombedCharSequence.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.RegexpFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "169686" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "51247" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "char java.lang.String.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "boolean java.util.regex.Pattern$StartS.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "6553" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.util.regex.Matcher java.util.regex.Pattern.matcher(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "com.intellij.openapi.util.Pair com.intellij.execution.filters.PatternBasedFileHyperlinkRawDataFinder.findMatcher(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.util.List com.intellij.execution.filters.PatternBasedFileHyperlinkRawDataFinder.find(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.util.List com.intellij.execution.filters.PatternBasedFileHyperlinkFilter.parse(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.AbstractFileHyperlinkFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "216019945" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "boolean java.util.regex.Pattern$Start.match(java.util.regex.Matcher, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "boolean java.util.regex.Matcher.search(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "boolean java.util.regex.Matcher.find()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb7", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.goide.execution.GoConsoleFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "322130173" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "boolean com.intellij.openapi.progress.impl.CoreProgressManager.sleepIfNeededToGivePriorityToAnotherThread()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean com.intellij.openapi.progress.impl.ProgressManagerImpl.runCheckCanceledHooks(com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.filters.CompositeFilter.applyFilter(java.lang.String, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "com.intellij.execution.filters.Filter$Result com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeLine(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "com.intellij.execution.impl.AsyncFilterRunner$FilterResult com.intellij.execution.impl.AsyncFilterRunner$HighlighterJob.analyzeNextLine()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.runTasks()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.RunnableCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "13818494063" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.unlock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolSubpage.unlock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdd", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolChunk.allocate(io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolChunkList.allocate(io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocateNormal(io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.tcacheAllocateSmall(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.buffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.internal.WritableBuffer io.grpc.netty.shaded.io.grpc.netty.NettyWritableBufferAllocator.allocate(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "int io.grpc.internal.MessageFramer.writeKnownLengthUncompressed(java.io.InputStream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "int io.grpc.internal.MessageFramer.writeUncompressed(java.io.InputStream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "void io.grpc.internal.MessageFramer.writePayload(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream.writeMessage(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessageInternal(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingServerCall.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverStreamingServerMethodDefinition$2$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManagerServerService$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x105", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.access$emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt$emitAllImpl$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "46903422" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10994" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f1072", + "lines": [ + "pipe_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3456", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e42d8", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4338", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6f99", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11ba99", + "lines": [ + "__GI___libc_read[]@:0", + "__GI___libc_read[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16e37", + "lines": [ + "handleRead[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x165b0", + "lines": [ + "readBytes[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "39750" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11c5ac", + "lines": [ + "__GI___libc_write[]@:0", + "__GI___libc_write[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x12a0fd", + "lines": [ + "eventfd_write[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4de8", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4de8[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.Native.eventFdWrite(int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.wakeup(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.execute0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.WriteQueue.scheduleFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.grpc.netty.WriteQueue.enqueue(io.grpc.netty.shaded.io.grpc.netty.WriteQueue$QueuedCommand, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyServerStream$Sink.writeFrameInternal(io.grpc.internal.WritableBuffer, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyServerStream$Sink.writeFrame(io.grpc.internal.WritableBuffer, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void io.grpc.internal.AbstractServerStream.deliverFrame(io.grpc.internal.WritableBuffer, boolean, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void io.grpc.internal.MessageFramer.commitToSink(boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void io.grpc.internal.MessageFramer.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void io.grpc.internal.AbstractStream.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessageInternal(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingServerCall.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverStreamingServerMethodDefinition$2$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManagerServerService$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x105", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.access$emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt$emitAllImpl$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "42507496" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9bc7e", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15793443" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPromise io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.addListener(io.grpc.netty.shaded.io.netty.util.concurrent.GenericFutureListener)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelFuture io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.addListener(io.grpc.netty.shaded.io.netty.util.concurrent.GenericFutureListener)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyServerStream$Sink.writeFrameInternal(io.grpc.internal.WritableBuffer, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyServerStream$Sink.writeFrame(io.grpc.internal.WritableBuffer, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void io.grpc.internal.AbstractServerStream.deliverFrame(io.grpc.internal.WritableBuffer, boolean, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void io.grpc.internal.MessageFramer.commitToSink(boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void io.grpc.internal.MessageFramer.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void io.grpc.internal.AbstractStream.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessageInternal(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingServerCall.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverStreamingServerMethodDefinition$2$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManagerServerService$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x105", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.access$emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt$emitAllImpl$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "69918340" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x165c9", + "lines": [ + "readBytes[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10527651" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16f43", + "lines": [ + "handleAvailable[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0xf2ca", + "lines": [ + "Java_java_io_FileInputStream_available0[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.available0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FileInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "35374472" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "41055552" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SendingCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "142426897" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.tcacheAllocateSmall(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.buffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.internal.WritableBuffer io.grpc.netty.shaded.io.grpc.netty.NettyWritableBufferAllocator.allocate(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "int io.grpc.internal.MessageFramer.writeKnownLengthUncompressed(java.io.InputStream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "int io.grpc.internal.MessageFramer.writeUncompressed(java.io.InputStream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "void io.grpc.internal.MessageFramer.writePayload(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream.writeMessage(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessageInternal(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingServerCall.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverStreamingServerMethodDefinition$2$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManagerServerService$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x105", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.access$emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt$emitAllImpl$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "45279309" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x985d9", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x98d6b", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1909619" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd13ed8", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "779249" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d61", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2826294345" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x66", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "42011209" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f0e52", + "lines": [ + "pipe_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501771", + "lines": [ + "do_vfs_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501d2c", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68fa", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16f43", + "lines": [ + "handleAvailable[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0xf2ca", + "lines": [ + "Java_java_io_FileInputStream_available0[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.available0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FileInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "375520" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b2823", + "lines": [ + "AccessInternal::PostRuntimeDispatch::oop_access_barrier(oopDesc*, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91b157", + "lines": [ + "java_lang_Thread::set_thread_status(oopDesc*, JavaThreadStatus)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3b55", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "13499561" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingServerCall.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverStreamingServerMethodDefinition$2$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManagerServerService$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x105", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.access$emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt$emitAllImpl$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "256442" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x986f8", + "lines": [ + "__GI___pthread_cleanup_pop[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc91", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "42650049" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11ba9a", + "lines": [ + "__GI___libc_read[]@:0", + "__GI___libc_read[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16e37", + "lines": [ + "handleRead[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x165b0", + "lines": [ + "readBytes[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "158635081" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf2a1", + "lines": [ + "Java_java_io_FileInputStream_available0[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.available0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FileInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "25952691" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.tcacheAllocateSmall(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf io.grpc.netty.shaded.io.netty.buffer.PoolArena.allocate(io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.ByteBuf io.grpc.netty.shaded.io.netty.buffer.AbstractByteBufAllocator.buffer(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.internal.WritableBuffer io.grpc.netty.shaded.io.grpc.netty.NettyWritableBufferAllocator.allocate(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "int io.grpc.internal.MessageFramer.writeKnownLengthUncompressed(java.io.InputStream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "int io.grpc.internal.MessageFramer.writeUncompressed(java.io.InputStream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "void io.grpc.internal.MessageFramer.writePayload(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream.writeMessage(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessageInternal(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingServerCall.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverStreamingServerMethodDefinition$2$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManagerServerService$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x105", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.access$emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt$emitAllImpl$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "51491554" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a166", + "lines": [ + "___fxstat64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16ee5", + "lines": [ + "handleAvailable[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0xf2ca", + "lines": [ + "Java_java_io_FileInputStream_available0[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.available0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FileInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "199940905" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "729629987010" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8037b", + "lines": [ + "FastThreadsListHandle::FastThreadsListHandle(oopDesc*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb1d24", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SendingCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "192243" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1573967849" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x89bc97ede847308a", + "lines": [ + "I2C/C2I adapters[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "26662537" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a167", + "lines": [ + "___fxstat64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16ee5", + "lines": [ + "handleAvailable[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0xf2ca", + "lines": [ + "Java_java_io_FileInputStream_available0[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.available0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FileInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "366885171" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "17841478836" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x188a00", + "lines": [ + "__memmove_avx_unaligned_erms[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9c4361", + "lines": [ + "jni_SetByteArrayRegion[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x165d7", + "lines": [ + "readBytes[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1522297" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void java.util.concurrent.atomic.AtomicIntegerFieldUpdater$AtomicIntegerFieldUpdaterImpl.accessCheck(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "int java.util.concurrent.atomic.AtomicIntegerFieldUpdater$AtomicIntegerFieldUpdaterImpl.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "931219904" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "309983" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98fc6", + "lines": [ + "__GI___lll_lock_wake[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa1ac1", + "lines": [ + "lll_mutex_unlock_optimized[]@:0", + "__GI___pthread_mutex_unlock_usercnt[]@:0", + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13eec", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "623939606" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "161172342" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "8037921" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "198111593" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlin.coroutines.jvm.internal.ContinuationImpl.\u003cinit\u003e(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1$emit$1.\u003cinit\u003e(io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverStreamingServerMethodDefinition$2$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManagerServerService$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x105", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.access$emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt$emitAllImpl$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50126633" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "284411490" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9c4250", + "lines": [ + "jni_SetByteArrayRegion[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x165d7", + "lines": [ + "readBytes[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "97987283" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "47279086" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x101def1", + "lines": [ + "LinuxWaitBarrier::wait(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb28b1", + "lines": [ + "SafepointSynchronize::block(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdbadfe", + "lines": [ + "SafepointMechanism::process(JavaThread*, bool, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9c6fae", + "lines": [ + "ThreadInVMfromNative::ThreadInVMfromNative(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9c4293", + "lines": [ + "jni_SetByteArrayRegion[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x165d7", + "lines": [ + "readBytes[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "771616" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "kotlinx.coroutines.UndispatchedCoroutine kotlinx.coroutines.CoroutineContextKt.updateUndispatchedCompletion(kotlin.coroutines.Continuation, kotlin.coroutines.CoroutineContext, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "31181632" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05f", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SendingCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "58739001" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a6a", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbae56", + "lines": [ + "Monitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1010619", + "lines": [ + "VMThread::wait_until_executed(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10122c2", + "lines": [ + "VMThread::execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d4cab", + "lines": [ + "G1CollectedHeap::attempt_allocation_slow(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d50f1", + "lines": [ + "G1CollectedHeap::allocate_new_tlab(unsigned long, unsigned long, unsigned long*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xc5783c", + "lines": [ + "MemAllocator::mem_allocate_inside_tlab_slow(MemAllocator::Allocation\u0026) const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xc57b77", + "lines": [ + "MemAllocator::allocate() const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x8e6be0", + "lines": [ + "InstanceKlass::allocate_instance(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdafce1", + "lines": [ + "OptoRuntime::new_instance_C(Klass*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x73811453d219e5bf", + "lines": [ + "_new_instance_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "com.google.protobuf.CodedOutputStream com.google.protobuf.CodedOutputStream.newInstance(java.io.OutputStream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.google.protobuf.AbstractMessageLite.writeTo(java.io.OutputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "int io.grpc.protobuf.lite.ProtoInputStream.drainTo(java.io.OutputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "int io.grpc.internal.MessageFramer.writeToOutputStream(java.io.InputStream, java.io.OutputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "int io.grpc.internal.MessageFramer.writeKnownLengthUncompressed(java.io.InputStream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "int io.grpc.internal.MessageFramer.writeUncompressed(java.io.InputStream, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "void io.grpc.internal.MessageFramer.writePayload(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void io.grpc.internal.AbstractStream.writeMessage(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessageInternal(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.internal.ServerCallImpl.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingServerCall.sendMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverCallListener$rpcJob$1$failure$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverStreamingServerMethodDefinition$2$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManagerServerService$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x105", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.access$emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt$emitAllImpl$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2325381" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe40", + "lines": [ + "linux-vdso.1.so 0xe40[]@:0" + ], + "mapping": "0x0-0x2000@0x0 linux-vdso.1.so()" + }, + { + "address": "0xec96c", + "lines": [ + "__GI___clock_gettime[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13205", + "lines": [ + "os::javaTimeNanos()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5386614" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11ba99", + "lines": [ + "__GI___libc_read[]@:0", + "__GI___libc_read[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16e37", + "lines": [ + "handleRead[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x165b0", + "lines": [ + "readBytes[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2229406280" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "104345322" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf2b6", + "lines": [ + "Java_java_io_FileInputStream_available0[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.available0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FileInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "75690943" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f1466", + "lines": [ + "pipe_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3456", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e42d8", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4338", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6f99", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11ba99", + "lines": [ + "__GI___libc_read[]@:0", + "__GI___libc_read[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x16e37", + "lines": [ + "handleRead[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x165b0", + "lines": [ + "readBytes[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libjava.so(5eb07e5f00b86523ac6778ee76204ff3081fd7d8)" + }, + { + "address": "0x0", + "lines": [ + "int java.io.FileInputStream.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.io.FileInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.FilterInputStream.read(byte[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManager$readStream$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SafeFlow.collectSafely(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.AbstractFlow.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.collect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperatorImpl.flowCollect(kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo$suspendImpl(kotlinx.coroutines.flow.internal.ChannelFlowOperator, kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowOperator.collectTo(kotlinx.coroutines.channels.ProducerScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.SoftLimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "47055836360" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1a60", + "lines": [ + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13eec", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "102632684" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlinx.coroutines.CoroutineDispatcher.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.JobKt__JobKt.ensureActive(kotlin.coroutines.CoroutineContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.JobKt.ensureActive(kotlin.coroutines.CoroutineContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ServerCalls$serverStreamingServerMethodDefinition$2$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.daemon.ProcessManagerServerService$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x105", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt.access$emitAllImpl$FlowKt__ChannelsKt(kotlinx.coroutines.flow.FlowCollector, kotlinx.coroutines.channels.ReceiveChannel, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ChannelsKt$emitAllImpl$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "62132568" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd13ed4", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "71120889" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "99869300" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "57285" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d64", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "59265829" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "long kotlinx.coroutines.internal.LockFreeTaskQueueCore$Companion.updateHead(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9c", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.LockFreeTaskQueueCore.removeFirstOrNull()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.LockFreeTaskQueue.removeFirstOrNull()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.pollGlobalQueues()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "209494909" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean kotlinx.coroutines.internal.LockFreeLinkedListNode.isRemoved()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void kotlinx.coroutines.internal.LockFreeLinkedListNode.finishAdd(kotlinx.coroutines.internal.LockFreeLinkedListNode)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.internal.LockFreeLinkedListNode.access$finishAdd(kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void kotlinx.coroutines.internal.LockFreeLinkedListNode$CondAddOp.complete(kotlinx.coroutines.internal.LockFreeLinkedListNode, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void kotlinx.coroutines.internal.LockFreeLinkedListNode$CondAddOp.complete(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.AtomicOp.perform(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "int kotlinx.coroutines.internal.LockFreeLinkedListNode.tryCondAddNext(kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode$CondAddOp)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.addLastAtomic(java.lang.Object, kotlinx.coroutines.NodeList, kotlinx.coroutines.JobNode)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137", + "lines": [ + "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.JobSupport.invokeOnCompletion(boolean, boolean, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.Job$DefaultImpls.invokeOnCompletion$default(kotlinx.coroutines.Job, boolean, boolean, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.CancellableContinuationImpl.installParentHandle()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.initCancellability()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.joinSuspend(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.join(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x181", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "330198680" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlinx.coroutines.internal.Symbol kotlinx.coroutines.CancellableContinuationImpl.tryResumeImpl(java.lang.Object, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.CancellableContinuationImpl.tryResume(java.lang.Object, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xaf", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.MediatedProcess$createInputStream$channel$1$1$1.emit(com.google.protobuf.ByteString, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.MediatedProcess$createInputStream$channel$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.ProcessMediatorClient$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14e", + "lines": [ + "java.lang.Object io.grpc.kotlin.ClientCalls$rpcImpl$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "475685693" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "boolean kotlinx.coroutines.CancellableContinuationImpl.cancel(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.parentCancelled$kotlinx_coroutines_core(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void kotlinx.coroutines.ChildContinuation.invoke(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void kotlinx.coroutines.JobSupport.notifyCancelling(kotlinx.coroutines.NodeList, java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.tryMakeCancelling(kotlinx.coroutines.Incomplete, java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x112", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.makeCancelling(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.cancelImpl$kotlinx_coroutines_core(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.JobSupport.cancelInternal(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.JobSupport.cancel(java.util.concurrent.CancellationException)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7e", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x181", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "101540558" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int java.lang.invoke.LambdaForm$MH+0x0000000802174000.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "int java.lang.invoke.LambdaForm$MH+0x00000008004f0c00.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "int jdk.internal.reflect.MethodHandleIntegerFieldAccessorImpl.getInt(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object jdk.internal.reflect.MethodHandleIntegerFieldAccessorImpl.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.lang.Object java.lang.reflect.Field.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int kotlin.coroutines.jvm.internal.DebugMetadataKt.getLabel(kotlin.coroutines.jvm.internal.BaseContinuationImpl)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.StackTraceElement kotlin.coroutines.jvm.internal.DebugMetadataKt.getStackTraceElement(kotlin.coroutines.jvm.internal.BaseContinuationImpl)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.StackTraceElement kotlin.coroutines.jvm.internal.BaseContinuationImpl.getStackTraceElement()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15829482" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9bdfd", + "lines": [ + "__condvar_dec_grefs[]@:0", + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50046368" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlinx.coroutines.JobSupport.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb7", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2054689770" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfb3adf", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "143754060" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SendingCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "void kotlinx.coroutines.intrinsics.UndispatchedKt.startCoroutineUndispatched(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$emit$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "68759195" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14e", + "lines": [ + "java.lang.Object io.grpc.kotlin.ClientCalls$rpcImpl$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "140219966" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "32207446239" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.LockFreeLinkedListNode.getNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "kotlinx.coroutines.internal.LockFreeLinkedListNode kotlinx.coroutines.internal.LockFreeLinkedListNode.getNextNode()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa4", + "lines": [ + "void kotlinx.coroutines.JobSupport.notifyCompletion(kotlinx.coroutines.NodeList, java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x93", + "lines": [ + "void kotlinx.coroutines.JobSupport.completeStateFinalization(kotlinx.coroutines.Incomplete, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x153", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.finalizeFinishingState(kotlinx.coroutines.JobSupport$Finishing, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompletingSlowPath(kotlinx.coroutines.Incomplete, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13d", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "138426751" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.selects.SelectImplementation.trySelect(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.MediatedProcess$createInputStream$channel$1$1$1.emit(com.google.protobuf.ByteString, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.MediatedProcess$createInputStream$channel$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.ProcessMediatorClient$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14e", + "lines": [ + "java.lang.Object io.grpc.kotlin.ClientCalls$rpcImpl$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5853761" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.internal.ScopeCoroutine.getCallerFrame()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner kotlinx.coroutines.debug.internal.DebugProbesImpl.owner(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "425137237" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb7", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "238299030" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(com.intellij.diagnostic.PerformanceWatcherImpl$FreezeCheckerTask, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "void kotlinx.coroutines.intrinsics.UndispatchedKt.startCoroutineUndispatched(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$emit$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "20003" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean kotlinx.coroutines.internal.LockFreeLinkedListHead.isRemoved()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "kotlinx.coroutines.ChildHandleNode kotlinx.coroutines.JobSupport.nextChild(kotlinx.coroutines.internal.LockFreeLinkedListNode)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "kotlinx.coroutines.ChildHandleNode kotlinx.coroutines.JobSupport.firstChild(kotlinx.coroutines.Incomplete)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompletingSlowPath(kotlinx.coroutines.Incomplete, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13d", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "103463594" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.UtilsKt$runBlockingForActionExpand$1.invoke(kotlin.coroutines.CoroutineContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.UtilsKt$runBlockingForActionExpand$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ContextKt.prepareThreadContext(kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$UpdateSessionImpl.compute(java.lang.Object, java.lang.String, com.intellij.openapi.actionSystem.ActionUpdateThread, java.util.function.Supplier)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "com.intellij.openapi.actionSystem.AnAction[] com.intellij.execution.runners.RunContentBuilder$EmptyWhenDuplicate.getChildren(com.intellij.openapi.actionSystem.AnActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "com.intellij.openapi.actionSystem.AnAction[] com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$2$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.access$insideReadAction(com.intellij.openapi.application.rw.InternalReadAction)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction$tryReadCancellable$2.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$tryReadCancellable$2.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$2$lambda$1$lambda$0(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x66", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$3.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$3.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$3.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "java.lang.Object kotlinx.coroutines.CoroutineScopeKt.coroutineScope(kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadActionUndispatched(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readActionUndispatched(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$$inlined$useWithScope$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$$inlined$useWithScope$1.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$$inlined$useWithScope$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x173", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.callAction(com.intellij.openapi.actionSystem.impl.OpElement, com.intellij.openapi.actionSystem.ActionUpdateThread, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$callAction(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.impl.OpElement, com.intellij.openapi.actionSystem.ActionUpdateThread, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x54", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invoke(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8e", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.LimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3602190" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "4659752383" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.Continuation kotlinx.coroutines.CancellableContinuationImpl.getDelegate$kotlinx_coroutines_core()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "117038348" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.CoroutineContext kotlin.coroutines.jvm.internal.ContinuationImpl.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50576552" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.isTerminated()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "207083204" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.EventLoopImplPlatform.unpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void kotlinx.coroutines.EventLoopImplBase.enqueue(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.EventLoopImplBase.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xaf", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.MediatedProcess$createInputStream$channel$1$1$1.emit(com.google.protobuf.ByteString, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.MediatedProcess$createInputStream$channel$1$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__ErrorsKt$catchImpl$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.ProcessMediatorClient$readStream$$inlined$map$1$2.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollectorKt$emitFun$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(kotlin.coroutines.Continuation, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SafeCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14e", + "lines": [ + "java.lang.Object io.grpc.kotlin.ClientCalls$rpcImpl$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "71449644" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd1366e", + "lines": [ + "PlatformEvent::park_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce0f93", + "lines": [ + "ObjectMonitor::EnterI(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce1a71", + "lines": [ + "ObjectMonitor::enter(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf2bd33", + "lines": [ + "ObjectSynchronizer::enter(Handle, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc2bda", + "lines": [ + "SharedRuntime::complete_monitor_locking_C(oopDesc*, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x66ffe23f176a6e33", + "lines": [ + "_complete_monitor_locking_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.putSynchronized(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.put(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.LimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "112717" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b6", + "lines": [ + "java.lang.Object io.grpc.kotlin.ClientCalls$rpcImpl$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "141592" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x91", + "lines": [ + "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object java.util.LinkedHashMap.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "java.lang.Object sun.reflect.annotation.AnnotationInvocationHandler.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int jdk.proxy2.$Proxy20.v()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "java.lang.StackTraceElement kotlin.coroutines.jvm.internal.DebugMetadataKt.getStackTraceElement(kotlin.coroutines.jvm.internal.BaseContinuationImpl)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.StackTraceElement kotlin.coroutines.jvm.internal.BaseContinuationImpl.getStackTraceElement()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "32801668" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "java.lang.Object java.lang.invoke.Invokers$Holder.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "java.lang.Object jdk.internal.reflect.DirectMethodHandleAccessor.invokeImpl(java.lang.Object, java.lang.Object[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object jdk.internal.reflect.DirectMethodHandleAccessor.invoke(java.lang.Object, java.lang.Object[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x66", + "lines": [ + "java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "java.lang.String kotlin.coroutines.jvm.internal.ModuleNameRetriever.getModuleName(kotlin.coroutines.jvm.internal.BaseContinuationImpl)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "java.lang.StackTraceElement kotlin.coroutines.jvm.internal.DebugMetadataKt.getStackTraceElement(kotlin.coroutines.jvm.internal.BaseContinuationImpl)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.StackTraceElement kotlin.coroutines.jvm.internal.BaseContinuationImpl.getStackTraceElement()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11205439" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6253", + "lines": [ + "AccessInternal::PostRuntimeDispatch::oop_access_barrier(void*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3b47", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "35151" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.remove(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1673247236" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.resumeImpl(java.lang.Object, int, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.resumeImpl$default(kotlinx.coroutines.CancellableContinuationImpl, java.lang.Object, int, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void kotlinx.coroutines.ResumeOnCompletion.invoke(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void kotlinx.coroutines.JobSupport.notifyCompletion(kotlinx.coroutines.NodeList, java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x93", + "lines": [ + "void kotlinx.coroutines.JobSupport.completeStateFinalization(kotlinx.coroutines.Incomplete, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x153", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.finalizeFinishingState(kotlinx.coroutines.JobSupport$Finishing, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompletingSlowPath(kotlinx.coroutines.Incomplete, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13d", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "249825706" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11c5ac", + "lines": [ + "__GI___libc_write[]@:0", + "__GI___libc_write[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x12a0fd", + "lines": [ + "eventfd_write[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4de8", + "lines": [ + "libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so 0x4de8[]@:0" + ], + "mapping": "0x0-0x12000@0x0 libio_grpc_netty_shaded_netty_transport_native_epoll_x86_6416171931862568438954.so(09eef3261d9b39d8a7cbdd47420c7c290e4e7410)" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.Native.eventFdWrite(int, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.wakeup(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.execute0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyClientStream$TransportState.runOnTransportThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState.requestMessagesFromDeframer(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.internal.AbstractStream$TransportState.access$000(io.grpc.internal.AbstractStream$TransportState, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.internal.AbstractStream.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.internal.ForwardingClientStream.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void io.grpc.internal.RetriableStream.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void io.grpc.internal.ClientCallImpl.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.PartialForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.ForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.ForwardingClientCall$SimpleForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.PartialForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.ForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void io.grpc.ForwardingClientCall$SimpleForwardingClientCall.request(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17f", + "lines": [ + "java.lang.Object io.grpc.kotlin.ClientCalls$rpcImpl$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1123238283" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x73", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "162545725" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1740270349" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x73", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "238205664" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x985df", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x98d6b", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "181322679" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "20865176" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd1366e", + "lines": [ + "PlatformEvent::park_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce0f93", + "lines": [ + "ObjectMonitor::EnterI(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce1a71", + "lines": [ + "ObjectMonitor::enter(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf2bd33", + "lines": [ + "ObjectSynchronizer::enter(Handle, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc2bda", + "lines": [ + "SharedRuntime::complete_monitor_locking_C(oopDesc*, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x66ffe23f176a6e33", + "lines": [ + "_complete_monitor_locking_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.putSynchronized(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.remove(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineCompleted(kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.access$probeCoroutineCompleted(kotlinx.coroutines.debug.internal.DebugProbesImpl, kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13d", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "170691" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean kotlinx.coroutines.NodeList.isActive()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.isActive()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean kotlinx.coroutines.AbstractCoroutine.isActive()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "46047094" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner kotlinx.coroutines.debug.internal.DebugProbesImpl.owner(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "63978685" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd13de8", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5576310" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "long kotlinx.coroutines.internal.LockFreeTaskQueueCore$Companion.updateHead(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9c", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.LockFreeTaskQueueCore.removeFirstOrNull()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.LockFreeTaskQueue.removeFirstOrNull()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.pollGlobalQueues()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "33925280" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.UtilsKt$runBlockingForActionExpand$1.invoke(kotlin.coroutines.CoroutineContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.UtilsKt$runBlockingForActionExpand$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ContextKt.prepareThreadContext(kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$UpdateSessionImpl.compute(java.lang.Object, java.lang.String, com.intellij.openapi.actionSystem.ActionUpdateThread, java.util.function.Supplier)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "com.intellij.openapi.actionSystem.AnAction[] com.intellij.execution.runners.RunContentBuilder$EmptyWhenDuplicate.getChildren(com.intellij.openapi.actionSystem.AnActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "com.intellij.openapi.actionSystem.AnAction[] com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$2$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.access$insideReadAction(com.intellij.openapi.application.rw.InternalReadAction)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction$tryReadCancellable$2.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$tryReadCancellable$2.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$2$lambda$1$lambda$0(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x66", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$3.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$3.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$3.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "java.lang.Object kotlinx.coroutines.CoroutineScopeKt.coroutineScope(kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadActionUndispatched(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readActionUndispatched(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$$inlined$useWithScope$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$$inlined$useWithScope$1.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$$inlined$useWithScope$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x173", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.callAction(com.intellij.openapi.actionSystem.impl.OpElement, com.intellij.openapi.actionSystem.ActionUpdateThread, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$callAction(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.impl.OpElement, com.intellij.openapi.actionSystem.ActionUpdateThread, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x54", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invoke(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8e", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x131", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.getGroupChildren(com.intellij.openapi.actionSystem.ActionGroup, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$getGroupChildren(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.ActionGroup, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x97", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xff", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.doExpandActionGroup(com.intellij.openapi.actionSystem.ActionGroup, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3ce", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.expandGroupChild(com.intellij.openapi.actionSystem.AnAction, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$expandGroupChild(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.AnAction, boolean, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2$expandResult$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.internal.LimitedDispatcher$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.scheduling.TaskImpl.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3879824" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1a60", + "lines": [ + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13eec", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11939" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d64", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "4336333" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a3a20", + "lines": [ + "libjvm.so 0x2a3a20[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd13205", + "lines": [ + "os::javaTimeNanos()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1670143" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "17961017" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.Job$DefaultImpls.invokeOnCompletion$default(kotlinx.coroutines.Job, boolean, boolean, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.CancellableContinuationImpl.installParentHandle()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.initCancellability()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.awaitValue(kotlinx.coroutines.flow.SharedFlowSlot, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x113", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "38659580" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9bb41", + "lines": [ + "__condvar_confirm_wakeup[]@:0", + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "18145961" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean kotlinx.coroutines.selects.SelectKt.access$tryResume(kotlinx.coroutines.CancellableContinuation, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "int kotlinx.coroutines.selects.SelectImplementation.trySelectInternal(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.selects.SelectImplementation.trySelect(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x181", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "69895211" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object java.util.concurrent.atomic.AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.remove(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "32284816" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5cbe22b612c526e6", + "lines": [ + "StubRoutines (final stubs)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object sun.reflect.annotation.AnnotationInvocationHandler.cloneArray(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "java.lang.Object sun.reflect.annotation.AnnotationInvocationHandler.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int[] jdk.proxy2.$Proxy20.l()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.StackTraceElement kotlin.coroutines.jvm.internal.DebugMetadataKt.getStackTraceElement(kotlin.coroutines.jvm.internal.BaseContinuationImpl)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.StackTraceElement kotlin.coroutines.jvm.internal.BaseContinuationImpl.getStackTraceElement()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "79672241" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf2c2d6", + "lines": [ + "ObjectSynchronizer::FastHashCode(Thread*, oopDesc*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e99c1", + "lines": [ + "JVM_IHashCode[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "int java.lang.Object.hashCode()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core.putImpl(java.lang.Object, java.lang.Object, kotlinx.coroutines.debug.internal.HashedWeakRef)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core.putImpl$default(kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core, java.lang.Object, java.lang.Object, kotlinx.coroutines.debug.internal.HashedWeakRef, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.put(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "kotlin.coroutines.Continuation kotlinx.coroutines.debug.internal.DebugProbesImpl.createOwner(kotlin.coroutines.Continuation, kotlinx.coroutines.debug.internal.StackTraceFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "kotlin.coroutines.Continuation kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineCreated$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "kotlin.coroutines.Continuation kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineCreated(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "kotlin.coroutines.Continuation kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsJvmKt.createCoroutineUnintercepted(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.intrinsics.CancellableKt.startCoroutineCancellable(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.intrinsics.CancellableKt.startCoroutineCancellable$default(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "109767" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int java.io.BufferedInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.nio.cs.StreamDecoder.inReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x66", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "204862457" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd13ed4", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "240378049" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "120881656" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.CharSequence com.intellij.openapi.util.text.StringUtilRt.unifyLineSeparators(java.lang.CharSequence, java.lang.String, int[], boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.lang.String com.intellij.openapi.util.text.StringUtilRt.convertLineSeparators(java.lang.String, java.lang.String, int[], boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.String com.intellij.openapi.util.text.StringUtilRt.convertLineSeparators(java.lang.String, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.String com.intellij.openapi.util.text.Strings.convertLineSeparators(java.lang.String, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.print(java.lang.String, com.intellij.execution.ui.ConsoleViewContentType, com.intellij.execution.filters.HyperlinkInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.print(java.lang.String, com.intellij.execution.ui.ConsoleViewContentType)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState.print(java.lang.String, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1.lambda$onTextAvailable$0(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f", + "lines": [ + "void com.intellij.execution.impl.ProcessStreamsSynchronizer.doWhenStreamsSynchronized(java.lang.String, com.intellij.execution.process.ProcessOutputType, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1.onTextAvailable(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void com.intellij.execution.process.ProcessHandler$2.onTextAvailable(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.execution.process.ProcessHandler.notifyTextAvailable(java.lang.String, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.execution.process.BaseOSProcessHandler$SimpleOutputReader.onTextAvailable(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb1", + "lines": [ + "void com.intellij.util.io.BaseOutputReader.processInput(char[], java.lang.StringBuilder, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15893085" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean kotlinx.coroutines.AbstractCoroutine.isActive()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "27013565" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd1366e", + "lines": [ + "PlatformEvent::park_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce0f93", + "lines": [ + "ObjectMonitor::EnterI(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce1a71", + "lines": [ + "ObjectMonitor::enter(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf2bd33", + "lines": [ + "ObjectSynchronizer::enter(Handle, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc2bda", + "lines": [ + "SharedRuntime::complete_monitor_locking_C(oopDesc*, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x66ffe23f176a6e33", + "lines": [ + "_complete_monitor_locking_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.putSynchronized(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.remove(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineCompleted(kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.access$probeCoroutineCompleted(kotlinx.coroutines.debug.internal.DebugProbesImpl, kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "98678" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.concurrent.atomic.AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl.compareAndSet(java.lang.Object, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "java.lang.Runnable kotlinx.coroutines.EventLoopImplBase.dequeue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb8", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "90215" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfb39c9", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "28285283" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "141557" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9bcc2", + "lines": [ + "__condvar_dec_grefs[]@:0", + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3594694" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98fc6", + "lines": [ + "__GI___lll_lock_wake[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa1ac1", + "lines": [ + "lll_mutex_unlock_optimized[]@:0", + "__GI___pthread_mutex_unlock_usercnt[]@:0", + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13eec", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "45506832" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void kotlinx.coroutines.JobSupport.completeStateFinalization(kotlinx.coroutines.Incomplete, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.tryFinalizeSimpleState(kotlinx.coroutines.Incomplete, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "350408" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean kotlinx.coroutines.debug.internal.DebugProbesImpl.isInstalled$kotlinx_coroutines_debug()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "161361376" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.CancellableContinuationImpl.installParentHandle()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "java.lang.Object kotlinx.coroutines.CancellableContinuationImpl.getResult()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ba", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.receiveOnNoWaiterSuspend(kotlinx.coroutines.channels.ChannelSegment, int, long, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc1", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.receive$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.receive(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.receive(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.util.ChannelInputStream$read$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2906101" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.afterResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "98905563" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.CoroutineContext kotlinx.coroutines.CoroutineDispatcher.minusKey(kotlin.coroutines.CoroutineContext$Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "kotlin.coroutines.CoroutineContext kotlin.coroutines.CoroutineContext$plus$1.invoke(kotlin.coroutines.CoroutineContext, kotlin.coroutines.CoroutineContext$Element)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlin.coroutines.CoroutineContext$plus$1.invoke(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlin.coroutines.CoroutineContext$Element$DefaultImpls.fold(kotlin.coroutines.CoroutineContext$Element, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.Job$DefaultImpls.fold(kotlinx.coroutines.Job, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "kotlin.coroutines.CoroutineContext kotlin.coroutines.CoroutineContext$DefaultImpls.plus(kotlin.coroutines.CoroutineContext, kotlin.coroutines.CoroutineContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.coroutines.CoroutineContext kotlin.coroutines.CoroutineContext$Element$DefaultImpls.plus(kotlin.coroutines.CoroutineContext$Element, kotlin.coroutines.CoroutineContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.coroutines.CoroutineContext kotlin.coroutines.AbstractCoroutineContextElement.plus(kotlin.coroutines.CoroutineContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void kotlinx.coroutines.BlockingCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, java.lang.Thread, kotlinx.coroutines.EventLoop, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x91", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1642259" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a1594", + "lines": [ + "HSpaceCounters::update_used(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7a8e0f", + "lines": [ + "MutatorAllocRegion::retire(bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d4a30", + "lines": [ + "G1CollectedHeap::attempt_allocation_slow(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d50f1", + "lines": [ + "G1CollectedHeap::allocate_new_tlab(unsigned long, unsigned long, unsigned long*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xc5783c", + "lines": [ + "MemAllocator::mem_allocate_inside_tlab_slow(MemAllocator::Allocation\u0026) const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xc57b77", + "lines": [ + "MemAllocator::allocate() const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfa5f84", + "lines": [ + "TypeArrayKlass::allocate_common(int, bool, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb0c76", + "lines": [ + "OptoRuntime::new_array_nozero_C(Klass*, int, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x2b3c8bab09f51eab", + "lines": [ + "_new_array_nozero_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "byte[] java.lang.StringUTF16.compress(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void java.lang.String.\u003cinit\u003e(char[], int, int, java.lang.Void)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void java.lang.String.\u003cinit\u003e(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void com.intellij.util.io.BaseOutputReader.processInput(char[], java.lang.StringBuilder, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1876585" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.tryFinalizeSimpleState(kotlinx.coroutines.Incomplete, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "24579741" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf7", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core.putImpl(java.lang.Object, java.lang.Object, kotlinx.coroutines.debug.internal.HashedWeakRef)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core.putImpl$default(kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core, java.lang.Object, java.lang.Object, kotlinx.coroutines.debug.internal.HashedWeakRef, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.remove(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "146736604" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12266f3", + "lines": [ + "common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400ea6", + "lines": [ + "asm_common_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "int java.io.BufferedInputStream.implAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "int java.io.BufferedInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.nio.cs.StreamDecoder.inReady()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x66", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "39905" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x985df", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x98d6b", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "74237996" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean kotlinx.coroutines.JobNode.isActive()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.isActive()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean kotlinx.coroutines.AbstractCoroutine.isActive()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "68406658" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void kotlinx.coroutines.JobSupport.onCancelling(java.lang.Throwable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.tryFinalizeSimpleState(kotlinx.coroutines.Incomplete, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "68958" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "490922977" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "boolean kotlin.jvm.internal.Intrinsics.areEqual(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "159556" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a3270", + "lines": [ + "libjvm.so 0x2a3270[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd13eec", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50962818" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "int kotlin.collections.AbstractMutableMap.size()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core kotlinx.coroutines.debug.internal.ConcurrentWeakMap$Core.rehash()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.putSynchronized(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.put(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "kotlin.coroutines.Continuation kotlinx.coroutines.debug.internal.DebugProbesImpl.createOwner(kotlin.coroutines.Continuation, kotlinx.coroutines.debug.internal.StackTraceFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "kotlin.coroutines.Continuation kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineCreated$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "kotlin.coroutines.Continuation kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineCreated(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "kotlin.coroutines.Continuation kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsJvmKt.createCoroutineUnintercepted(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.intrinsics.CancellableKt.startCoroutineCancellable(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.intrinsics.CancellableKt.startCoroutineCancellable$default(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "93410593" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.available()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "409567581" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.remove(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "19853" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "47269997729" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void com.intellij.execution.impl.ProcessStreamsSynchronizer.doWhenStreamsSynchronized(java.lang.String, com.intellij.execution.process.ProcessOutputType, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1.onTextAvailable(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void com.intellij.execution.process.ProcessHandler$2.onTextAvailable(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.execution.process.ProcessHandler.notifyTextAvailable(java.lang.String, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.execution.process.BaseOSProcessHandler$SimpleOutputReader.onTextAvailable(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb1", + "lines": [ + "void com.intellij.util.io.BaseOutputReader.processInput(char[], java.lang.StringBuilder, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "9986067" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.CharSequence com.intellij.openapi.util.text.StringUtilRt.unifyLineSeparators(java.lang.CharSequence, java.lang.String, int[], boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.lang.String com.intellij.openapi.util.text.StringUtilRt.convertLineSeparators(java.lang.String, java.lang.String, int[], boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.String com.intellij.openapi.util.text.StringUtilRt.convertLineSeparators(java.lang.String, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.String com.intellij.openapi.util.text.Strings.convertLineSeparators(java.lang.String, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.print(java.lang.String, com.intellij.execution.ui.ConsoleViewContentType, com.intellij.execution.filters.HyperlinkInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.print(java.lang.String, com.intellij.execution.ui.ConsoleViewContentType)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState.print(java.lang.String, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1.lambda$onTextAvailable$0(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f", + "lines": [ + "void com.intellij.execution.impl.ProcessStreamsSynchronizer.doWhenStreamsSynchronized(java.lang.String, com.intellij.execution.process.ProcessOutputType, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewRunningState$1.onTextAvailable(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void com.intellij.execution.process.ProcessHandler$2.onTextAvailable(com.intellij.execution.process.ProcessEvent, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.execution.process.ProcessHandler.notifyTextAvailable(java.lang.String, com.intellij.openapi.util.Key)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.execution.process.BaseOSProcessHandler$SimpleOutputReader.onTextAvailable(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb1", + "lines": [ + "void com.intellij.util.io.BaseOutputReader.processInput(char[], java.lang.StringBuilder, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "240194654" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd1366e", + "lines": [ + "PlatformEvent::park_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce0f93", + "lines": [ + "ObjectMonitor::EnterI(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce1a71", + "lines": [ + "ObjectMonitor::enter(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf2bd33", + "lines": [ + "ObjectSynchronizer::enter(Handle, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc2bda", + "lines": [ + "SharedRuntime::complete_monitor_locking_C(oopDesc*, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x66ffe23f176a6e33", + "lines": [ + "_complete_monitor_locking_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.putSynchronized(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object kotlinx.coroutines.debug.internal.ConcurrentWeakMap.put(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "kotlin.coroutines.Continuation kotlinx.coroutines.debug.internal.DebugProbesImpl.createOwner(kotlin.coroutines.Continuation, kotlinx.coroutines.debug.internal.StackTraceFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "kotlin.coroutines.Continuation kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineCreated$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "kotlin.coroutines.Continuation kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineCreated(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "kotlin.coroutines.Continuation kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsJvmKt.createCoroutineUnintercepted(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.intrinsics.CancellableKt.startCoroutineCancellable(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.intrinsics.CancellableKt.startCoroutineCancellable$default(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "307337" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.receive$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.receive(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.receive(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.client.util.ChannelInputStream$read$1$1.invokeSuspend(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "58379485" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1579756421" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd13ed8", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "77926457" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d61", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "86483499" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseOutputReader.processInput(char[], java.lang.StringBuilder, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3303859" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlin.coroutines.jvm.internal.BaseContinuationImpl.getCallerFrame()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x73", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "150235748" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14e", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "59980345" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f298", + "lines": [ + "__pthread_mutex_cond_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bb54", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BlockingCoroutine.joinBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(kotlin.coroutines.CoroutineContext, boolean, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.runBlocking$default(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "int com.intellij.execution.process.mediator.client.util.ChannelInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "int java.io.BufferedInputStream.read1(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "int java.io.BufferedInputStream.implRead(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "int java.io.BufferedInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "int sun.nio.cs.StreamDecoder.readBytes()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "int sun.nio.cs.StreamDecoder.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int java.io.InputStreamReader.read(char[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.io.Reader.read(char[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.util.io.BaseOutputReader.readAvailableBlocking()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean com.intellij.util.io.BaseDataReader.readAvailable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.io.BaseDataReader.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.io.BaseDataReader.lambda$start$0(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.io.BaseDataReader$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "41215" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "com.google.protobuf.MessageLite io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object io.grpc.MethodDescriptor.parseResponse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "384092" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f298", + "lines": [ + "__pthread_mutex_cond_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bb54", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "41895439" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object io.grpc.MethodDescriptor.parseResponse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "40535432" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.trySend-JP2dKIU(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.kotlin.ClientCalls$rpcImpl$1$1$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingClientCallListener.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8c", + "lines": [ + "void com.intellij.execution.process.mediator.client.grpc.LoggingClientInterceptor$interceptCall$1$start$listener$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "169414330" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "kotlinx.coroutines.scheduling.CoroutineScheduler$Worker kotlinx.coroutines.scheduling.CoroutineScheduler.parkedWorkersStackPop()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.trySend-JP2dKIU(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.kotlin.ClientCalls$rpcImpl$1$1$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingClientCallListener.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8c", + "lines": [ + "void com.intellij.execution.process.mediator.client.grpc.LoggingClientInterceptor$interceptCall$1$start$listener$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7168291" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object com.intellij.execution.process.mediator.common.rpc.DataChunk$1.parsePartialFrom(com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "com.google.protobuf.MessageLite com.google.protobuf.AbstractParser.parseFrom(com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object com.google.protobuf.AbstractParser.parseFrom(com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "com.google.protobuf.MessageLite io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parseFrom(com.google.protobuf.CodedInputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x112", + "lines": [ + "com.google.protobuf.MessageLite io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object io.grpc.MethodDescriptor.parseResponse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11460041" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1782d", + "lines": [ + "__tls_get_addr[]@:0" + ], + "mapping": "0x1000-0x2c000@0x1000 ld-linux-x86-64.so.2(353e1b6cb0eebc08cf3ff812eae8a51b4efd684e)" + }, + { + "address": "0xd13e15", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "9402303" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "551087889" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1a60", + "lines": [ + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13eec", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1078552893" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void java.lang.ThreadLocal$ThreadLocalMap.set(java.lang.ThreadLocal, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void java.lang.ThreadLocal.set(java.lang.Thread, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.ThreadLocal.set(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "io.grpc.Context io.grpc.ThreadLocalContextStorage.doAttach(io.grpc.Context)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.Context io.grpc.Context.attach()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "594546092" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer$3.read(io.grpc.internal.ReadableBuffer, int, byte[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer$3.read(io.grpc.internal.ReadableBuffer, int, java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer.execute(io.grpc.internal.CompositeReadableBuffer$ReadOperation, int, java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer.executeNoThrow(io.grpc.internal.CompositeReadableBuffer$NoThrowReadOperation, int, java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void io.grpc.internal.CompositeReadableBuffer.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "int io.grpc.internal.ReadableBuffers$BufferInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "com.google.protobuf.MessageLite io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object io.grpc.MethodDescriptor.parseResponse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1084273" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "kotlin.coroutines.CoroutineContext kotlin.coroutines.jvm.internal.ContinuationImpl.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "kotlin.coroutines.CoroutineContext kotlinx.coroutines.internal.DispatchedContinuation.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.trySend-JP2dKIU(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.kotlin.ClientCalls$rpcImpl$1$1$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingClientCallListener.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8c", + "lines": [ + "void com.intellij.execution.process.mediator.client.grpc.LoggingClientInterceptor$interceptCall$1$start$listener$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "48504" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "47346519589" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d61", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "233878838" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyReadableBuffer.close()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "void io.grpc.internal.CompositeReadableBuffer.advanceBuffer()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void io.grpc.internal.CompositeReadableBuffer.advanceBufferIfNecessary()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer.execute(io.grpc.internal.CompositeReadableBuffer$ReadOperation, int, java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer.executeNoThrow(io.grpc.internal.CompositeReadableBuffer$NoThrowReadOperation, int, java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void io.grpc.internal.CompositeReadableBuffer.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "int io.grpc.internal.ReadableBuffers$BufferInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "com.google.protobuf.MessageLite io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object io.grpc.MethodDescriptor.parseResponse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "346445583" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9ffe0", + "lines": [ + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13889", + "lines": [ + "Parker::unpark()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.trySend-JP2dKIU(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.kotlin.ClientCalls$rpcImpl$1$1$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingClientCallListener.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8c", + "lines": [ + "void com.intellij.execution.process.mediator.client.grpc.LoggingClientInterceptor$interceptCall$1$start$listener$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "334753436" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9bb14", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "29984774" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.trySend-JP2dKIU(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.kotlin.ClientCalls$rpcImpl$1$1$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void io.grpc.ForwardingClientCallListener.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8c", + "lines": [ + "void com.intellij.execution.process.mediator.client.grpc.LoggingClientInterceptor$interceptCall$1$start$listener$1.onMessage(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "36482462" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object io.grpc.netty.shaded.io.netty.util.Recycler.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object io.grpc.netty.shaded.io.netty.util.internal.ObjectPool$RecyclerObjectPool.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache$MemoryRegionCache$Entry io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache$MemoryRegionCache.newEntry(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache$MemoryRegionCache.add(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache.add(io.grpc.netty.shaded.io.netty.buffer.PoolArena, io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolArena$SizeClass)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PoolArena.free(io.grpc.netty.shaded.io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int, io.grpc.netty.shaded.io.netty.buffer.PoolThreadCache)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.deallocate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractReferenceCountedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.buffer.AbstractDerivedByteBuf.release()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void io.grpc.netty.shaded.io.grpc.netty.NettyReadableBuffer.close()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "void io.grpc.internal.CompositeReadableBuffer.advanceBuffer()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void io.grpc.internal.CompositeReadableBuffer.advanceBufferIfNecessary()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer.execute(io.grpc.internal.CompositeReadableBuffer$ReadOperation, int, java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "int io.grpc.internal.CompositeReadableBuffer.executeNoThrow(io.grpc.internal.CompositeReadableBuffer$NoThrowReadOperation, int, java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void io.grpc.internal.CompositeReadableBuffer.readBytes(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "int io.grpc.internal.ReadableBuffers$BufferInputStream.read(byte[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "com.google.protobuf.MessageLite io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller.parse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object io.grpc.MethodDescriptor.parseResponse(java.io.InputStream)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInternal()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1MessagesAvailable.runInContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void io.grpc.internal.ContextRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "227791722" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7026907" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "97296522" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void io.grpc.internal.SerializingExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "201483" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98fc6", + "lines": [ + "__GI___lll_lock_wake[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa1ac1", + "lines": [ + "lll_mutex_unlock_optimized[]@:0", + "__GI___pthread_mutex_unlock_usercnt[]@:0", + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13eec", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "89083070" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1038886", + "lines": [ + "WorkerThreads::run_task(WorkerTask*, unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856987", + "lines": [ + "G1YoungCollector::post_evacuate_collection_set(G1EvacInfo*, G1ParScanThreadStateSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856e2f", + "lines": [ + "G1YoungCollector::collect()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d1077", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint_helper()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d11fb", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x854c9f", + "lines": [ + "VM_G1CollectForAllocation::doit()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x100dc30", + "lines": [ + "VM_Operation::evaluate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1011a81", + "lines": [ + "VMThread::evaluate_operation(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x101208e", + "lines": [ + "VMThread::inner_execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123b6", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "60662" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x103860a", + "lines": [ + "WorkerThreads::run_task(WorkerTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x855e89", + "lines": [ + "G1YoungCollector::evacuate_initial_collection_set(G1ParScanThreadStateSet*, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856e13", + "lines": [ + "G1YoungCollector::collect()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d1077", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint_helper()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d11fb", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x854c9f", + "lines": [ + "VM_G1CollectForAllocation::doit()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x100dc30", + "lines": [ + "VM_Operation::evaluate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1011a81", + "lines": [ + "VMThread::evaluate_operation(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x101208e", + "lines": [ + "VMThread::inner_execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123b6", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1631901" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1038886", + "lines": [ + "WorkerThreads::run_task(WorkerTask*, unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x858183", + "lines": [ + "void WeakProcessor::weak_oops_do(WorkerThreads*, G1STWIsAliveClosure*, G1KeepAliveClosure*, WeakProcessorTimes*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856894", + "lines": [ + "G1YoungCollector::post_evacuate_collection_set(G1EvacInfo*, G1ParScanThreadStateSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856e2f", + "lines": [ + "G1YoungCollector::collect()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d1077", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint_helper()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d11fb", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x854c9f", + "lines": [ + "VM_G1CollectForAllocation::doit()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x100dc30", + "lines": [ + "VM_Operation::evaluate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1011a81", + "lines": [ + "VMThread::evaluate_operation(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x101208e", + "lines": [ + "VMThread::inner_execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123b6", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "140460739" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a40", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbaa68", + "lines": [ + "Monitor::wait_without_safepoint_check(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1010294", + "lines": [ + "VMThread::wait_for_operation()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123c7", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "43863630862" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1038886", + "lines": [ + "WorkerThreads::run_task(WorkerTask*, unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x8568d2", + "lines": [ + "G1YoungCollector::post_evacuate_collection_set(G1EvacInfo*, G1ParScanThreadStateSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856e2f", + "lines": [ + "G1YoungCollector::collect()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d1077", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint_helper()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d11fb", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x854c9f", + "lines": [ + "VM_G1CollectForAllocation::doit()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x100dc30", + "lines": [ + "VM_Operation::evaluate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1011a81", + "lines": [ + "VMThread::evaluate_operation(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x101208e", + "lines": [ + "VMThread::inner_execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123b6", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14002" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1038886", + "lines": [ + "WorkerThreads::run_task(WorkerTask*, unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x8558f9", + "lines": [ + "G1YoungCollector::pre_evacuate_collection_set(G1EvacInfo*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856dd4", + "lines": [ + "G1YoungCollector::collect()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d1077", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint_helper()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d11fb", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x854c9f", + "lines": [ + "VM_G1CollectForAllocation::doit()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x100dc30", + "lines": [ + "VM_Operation::evaluate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1011a81", + "lines": [ + "VMThread::evaluate_operation(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x101208e", + "lines": [ + "VMThread::inner_execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123b6", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "17856" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1038886", + "lines": [ + "WorkerThreads::run_task(WorkerTask*, unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x8c05cc", + "lines": [ + "HeapRegionManager::rebuild_free_list(WorkerThreads*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d25f9", + "lines": [ + "G1CollectedHeap::rebuild_free_region_list()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856a14", + "lines": [ + "G1YoungCollector::post_evacuate_collection_set(G1EvacInfo*, G1ParScanThreadStateSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856e2f", + "lines": [ + "G1YoungCollector::collect()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d1077", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint_helper()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d11fb", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x854c9f", + "lines": [ + "VM_G1CollectForAllocation::doit()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x100dc30", + "lines": [ + "VM_Operation::evaluate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1011a81", + "lines": [ + "VMThread::evaluate_operation(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x101208e", + "lines": [ + "VMThread::inner_execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123b6", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "9085" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1038886", + "lines": [ + "WorkerThreads::run_task(WorkerTask*, unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x8320b2", + "lines": [ + "G1RemSet::merge_heap_roots(bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x855d1e", + "lines": [ + "G1YoungCollector::evacuate_initial_collection_set(G1ParScanThreadStateSet*, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856e13", + "lines": [ + "G1YoungCollector::collect()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d1077", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint_helper()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d11fb", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x854c9f", + "lines": [ + "VM_G1CollectForAllocation::doit()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x100dc30", + "lines": [ + "VM_Operation::evaluate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1011a81", + "lines": [ + "VMThread::evaluate_operation(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x101208e", + "lines": [ + "VMThread::inner_execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123b6", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "16228" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x103860a", + "lines": [ + "WorkerThreads::run_task(WorkerTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x855ba1", + "lines": [ + "G1YoungCollector::pre_evacuate_collection_set(G1EvacInfo*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856dd4", + "lines": [ + "G1YoungCollector::collect()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d1077", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint_helper()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d11fb", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x854c9f", + "lines": [ + "VM_G1CollectForAllocation::doit()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x100dc30", + "lines": [ + "VM_Operation::evaluate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1011a81", + "lines": [ + "VMThread::evaluate_operation(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x101208e", + "lines": [ + "VMThread::inner_execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123b6", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "16416" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1038886", + "lines": [ + "WorkerThreads::run_task(WorkerTask*, unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd8c3d2", + "lines": [ + "ReferenceProcessor::process_final_keep_alive(RefProcProxyTask\u0026, ReferenceProcessorPhaseTimes\u0026)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd8ca1b", + "lines": [ + "ReferenceProcessor::process_discovered_references(RefProcProxyTask\u0026, ReferenceProcessorPhaseTimes\u0026)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x8562e3", + "lines": [ + "G1YoungCollector::process_discovered_references(G1ParScanThreadStateSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x85684d", + "lines": [ + "G1YoungCollector::post_evacuate_collection_set(G1EvacInfo*, G1ParScanThreadStateSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x856e2f", + "lines": [ + "G1YoungCollector::collect()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d1077", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint_helper()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7d11fb", + "lines": [ + "G1CollectedHeap::do_collection_pause_at_safepoint()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x854c9f", + "lines": [ + "VM_G1CollectForAllocation::doit()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x100dc30", + "lines": [ + "VM_Operation::evaluate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x1011a81", + "lines": [ + "VMThread::evaluate_operation(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x101208e", + "lines": [ + "VMThread::inner_execute(VM_Operation*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10123b6", + "lines": [ + "VMThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "39907" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "com.intellij.util.text.ImmutableText$InnerLeaf com.intellij.util.text.ImmutableText.findLeaf(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "char com.intellij.util.text.ImmutableText.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "boolean com.intellij.util.DocumentUtil.isSurrogatePair(com.intellij.openapi.editor.Document, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.util.DocumentUtil.isInsideSurrogatePair(com.intellij.openapi.editor.Document, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int com.intellij.util.DocumentUtil.alignToCodePointBoundary(com.intellij.openapi.editor.Document, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.offsetToVisualLine(int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.lambda$visualLineToOffset$0(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper$$Lambda+\u003chidden\u003e.applyAsInt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "int com.intellij.util.ObjectUtils.binarySearch(int, int, java.util.function.IntUnaryOperator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.visualLineToOffset(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "int[] com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.visualLineToYRange(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.visualLineToY(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorView.visualLineToY(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Integer com.intellij.openapi.editor.impl.EditorImpl.lambda$visualLineToY$41(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "int com.intellij.openapi.editor.impl.EditorImpl.visualLineToY(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "int com.intellij.openapi.editor.impl.view.VisualLinesIterator.getY()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19d", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "72623548" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.lambda$containsAny$0(java.util.List, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings$$Lambda+\u003chidden\u003e.value(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.containsAny(java.lang.String, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.shouldFoldLine(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean com.intellij.execution.console.SubstringConsoleFolding.shouldFoldLine(com.intellij.openapi.project.Project, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85ee4a2a3882a827", + "lines": [ + "_new_array_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "com.intellij.execution.ConsoleFolding com.intellij.execution.impl.ConsoleViewImpl.foldingForLine(java.util.List, int, com.intellij.openapi.editor.Document)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xac", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.lambda$updateFoldings$18(com.intellij.openapi.editor.Editor, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.FoldingModel.runBatchFoldingOperation(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.updateFoldings(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.highlightHyperlinksAndFoldings(int, com.intellij.openapi.util.Expirable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x282", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "178381755" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x36447", + "lines": [ + "XQueryPointer[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x32749", + "lines": [ + "Java_sun_awt_X11_XlibWrapper_XQueryPointer[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "boolean sun.awt.X11.XlibWrapper.XQueryPointer(long, long, long, long, long, long, long, long, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45", + "lines": [ + "boolean sun.awt.X11.XMouseInfoPeer.isWindowUnderMouse(java.awt.Window)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.awt.Component java.awt.Component.findUnderMouseInWindow(java.awt.PointerInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.awt.Point java.awt.Component.getMousePosition()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean com.intellij.openapi.ui.UiUtils.isComponentUnderMouse(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.EditorFloatingToolbar$EditorFloatingToolbarComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.AbstractFloatingToolbarComponent$ToolbarTransparentComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.access$nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState$lambda$0(kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function1, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object java.util.concurrent.atomic.AtomicReference.updateAndGet(java.util.function.UnaryOperator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState(kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator._init_$lambda$2(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.actionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void javax.swing.Timer.fireActionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void javax.swing.Timer$DoPostEvent.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "21359" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.awt.Toolkit.enabledOnToolkit(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d", + "lines": [ + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Void java.awt.EventQueue$5.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$5.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10252" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.openapi.util.text.LineTokenizer.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "com.intellij.openapi.editor.impl.LineSet com.intellij.openapi.editor.impl.LineSet.createLineSet(java.lang.CharSequence, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "com.intellij.openapi.editor.impl.LineSet com.intellij.openapi.editor.impl.LineSet.genericUpdate(int, int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.editor.impl.LineSet com.intellij.openapi.editor.impl.LineSet.update(java.lang.CharSequence, int, int, java.lang.CharSequence, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "294322706" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillRect(sun.java2d.SunGraphics2D, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void sun.java2d.SunGraphics2D.fillRect(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf7", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawCharacters(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, java.awt.Graphics2D, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel$6.consume(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbe", + "lines": [ + "void com.jediterm.terminal.model.TerminalLine.process(int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void com.jediterm.terminal.model.LinesBuffer.processLines(int, int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void com.jediterm.terminal.model.TerminalTextBuffer.processHistoryAndScreenLines(int, int, com.jediterm.terminal.StyledTextConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "19277" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void java.lang.String.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.CharArrayUtil.getChars(java.lang.CharSequence, char[], int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "char[] com.intellij.util.text.CharArrayUtil.fromSequence(java.lang.CharSequence, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "char[] com.intellij.util.text.CharArrayUtil.fromSequence(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LineLayout.isBidiLayoutRequired(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.view.TextLayoutCache.documentChanged(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.lambda$changedUpdate$1(com.intellij.openapi.editor.event.DocumentListener[], com.intellij.openapi.editor.event.DocumentEvent, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeNonCancelableSection$3(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$computeInNonCancelableSection$4(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.Cancellation.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeNonCancelableSection(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c0", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "89952580" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x135", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawChars(int, int, com.jediterm.terminal.model.CharBuffer, com.jediterm.terminal.TextStyle, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x115", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawCharacters(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, java.awt.Graphics2D, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel$6.consume(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbe", + "lines": [ + "void com.jediterm.terminal.model.TerminalLine.process(int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void com.jediterm.terminal.model.LinesBuffer.processLines(int, int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void com.jediterm.terminal.model.TerminalTextBuffer.processHistoryAndScreenLines(int, int, com.jediterm.terminal.StyledTextConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "16752" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "com.intellij.openapi.editor.impl.IntervalTreeImpl$IntervalNode com.intellij.openapi.editor.impl.IntervalTreeImpl.addInterval(java.lang.Object, int, int, boolean, boolean, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "com.intellij.openapi.editor.impl.RangeMarkerTree$RMNode com.intellij.openapi.editor.impl.RangeMarkerTree.addInterval(com.intellij.openapi.editor.ex.RangeMarkerEx, int, int, boolean, boolean, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.editor.impl.MarkupModelImpl.addRangeHighlighter(com.intellij.openapi.editor.ex.RangeHighlighterEx, int, int, boolean, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.RangeHighlighterImpl.registerInTree(int, int, boolean, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.openapi.editor.impl.RangeHighlighterImpl.\u003cinit\u003e(com.intellij.openapi.editor.impl.MarkupModelImpl, int, int, int, com.intellij.openapi.editor.markup.HighlighterTargetArea, com.intellij.openapi.editor.colors.TextAttributesKey, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "com.intellij.openapi.editor.ex.RangeHighlighterEx com.intellij.openapi.editor.impl.MarkupModelImpl.addRangeHighlighterAndChangeAttributes(com.intellij.openapi.editor.colors.TextAttributesKey, int, int, int, com.intellij.openapi.editor.markup.HighlighterTargetArea, boolean, com.intellij.util.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc3", + "lines": [ + "void com.intellij.execution.impl.ConsoleTokenUtil.createTokenRangeHighlighter(com.intellij.openapi.editor.Editor, com.intellij.openapi.project.Project, com.intellij.execution.ui.ConsoleViewContentType, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x112", + "lines": [ + "void com.intellij.execution.impl.ConsoleTokenUtil.highlightTokenTextAttributes(com.intellij.openapi.editor.Editor, com.intellij.openapi.project.Project, java.util.List, com.intellij.execution.impl.EditorHyperlinkSupport, java.util.Collection, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x179", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1597666" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.ui.Splitter.hideNull(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void com.intellij.openapi.ui.ThreeComponentsSplitterKt.validateIfNeeded(javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.ui.ThreeComponentsSplitterKt.access$validateIfNeeded(javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22b", + "lines": [ + "void com.intellij.openapi.ui.ThreeComponentsSplitter.doLayout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "36941819" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void sun.java2d.SunGraphics2D.validateColor()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void sun.java2d.SunGraphics2D.\u003cinit\u003e(sun.java2d.SurfaceData, java.awt.Color, java.awt.Color, java.awt.Font)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.awt.Graphics2D sun.awt.image.SunVolatileImage.createGraphics()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.awt.Graphics java.awt.image.VolatileImage.getGraphics()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "370491557" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "6226215" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.awt.Point sun.awt.X11.XDecoratedPeer.getLocationOnScreen()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "java.awt.Point java.awt.Component.getLocationOnScreen_NoTreeLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.awt.Point java.awt.Component.getLocationOnScreen()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void javax.swing.SwingUtilities.convertPointFromScreen(java.awt.Point, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.ui.UiUtils.isComponentUnderMouse(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.EditorFloatingToolbar$EditorFloatingToolbarComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.AbstractFloatingToolbarComponent$ToolbarTransparentComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.access$nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState$lambda$0(kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function1, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object java.util.concurrent.atomic.AtomicReference.updateAndGet(java.util.function.UnaryOperator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState(kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator._init_$lambda$2(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.actionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void javax.swing.Timer.fireActionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void javax.swing.Timer$DoPostEvent.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "37048" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int com.intellij.openapi.editor.impl.view.VisualLinesIterator$Location.getNextVisualLineStartOffset(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.view.VisualLinesIterator$Location.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void com.intellij.openapi.editor.impl.view.VisualLinesIterator.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "com.intellij.util.IntPair com.intellij.openapi.editor.impl.view.EditorSizeManager.calculateTextPreferredWidth(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorSizeManager.getTextPreferredWidth()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorSizeManager.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.lambda$getPreferredSize$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.view.EditorView$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.lambda$getPreferredSize$53()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorComponentImpl.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cb", + "lines": [ + "void com.intellij.ui.components.JBScrollPane$Layout.layoutContainer(java.awt.Container)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.Container.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.lambda$layout$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void java.awt.Container.doLayout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "669737004" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4454ce", + "lines": [ + "Chunk::operator new(unsigned long, AllocFailStrategy::AllocFailEnum, unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x446203", + "lines": [ + "Arena::grow(unsigned long, AllocFailStrategy::AllocFailEnum)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xff16eb", + "lines": [ + "vframe::new_vframe(frame const*, RegisterMap const*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xff3611", + "lines": [ + "vframeStreamCommon::asJavaVFrame()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9f6e2f", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Void java.awt.EventQueue$5.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$5.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "75062622" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.awt.Point sun.awt.X11.XDecoratedPeer.getLocationOnScreen()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "java.awt.Point java.awt.Component.getLocationOnScreen_NoTreeLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.awt.Point java.awt.Component.getLocationOnScreen()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void javax.swing.SwingUtilities.convertPointFromScreen(java.awt.Point, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void com.intellij.ide.HoverService$ComponentPoint.mouseMoved(java.awt.event.MouseEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe3", + "lines": [ + "void com.intellij.ide.HoverService.process(java.awt.event.MouseEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ide.HoverService.process(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x193", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "45539690" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "99464460" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x465a8", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2aebe", + "lines": [ + "X11SD_CreateSharedImage[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c081", + "lines": [ + "X11SD_GetImageReal[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c7e8", + "lines": [ + "X11SD_GetRasInfo[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x24bf8", + "lines": [ + "Java_sun_java2d_loops_Blit_Blit[]@:0" + ], + "mapping": "0x1f000-0xa3000@0x1f000 libawt.so(28898f3f4b6ead999b4a61692fd5c4b42c0bb2ac)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.loops.Blit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf0", + "lines": [ + "sun.java2d.xr.XRSurfaceData sun.java2d.xr.XRPMBlitLoops.cacheToTmpSurface(sun.java2d.SurfaceData, sun.java2d.xr.XRSurfaceData, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void sun.java2d.xr.XrSwToPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ui.StartupUiUtil.drawImage(java.awt.Graphics, java.awt.image.BufferedImage, java.awt.image.BufferedImageOp, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void com.intellij.util.ui.RegionPainter$Image.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.ui.stripe.ErrorStripePainter.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "void com.intellij.ui.stripe.Updater.lambda$new$0(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.stripe.Updater$$Lambda+\u003chidden\u003e.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26d", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "9784787" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage$default(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.ui.icons.ScaledResultIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "void com.intellij.ui.icons.CachedImageIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.ui.DeferredIconImpl.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa0", + "lines": [ + "void com.intellij.ui.LayeredIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa5", + "lines": [ + "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.paintIcon(java.awt.Graphics, javax.swing.Icon, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doPaintIcon(java.awt.Graphics2D, javax.swing.Icon, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43e", + "lines": [ + "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "57797601" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void java.lang.String.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.text.ImmutableText.access$100(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void com.intellij.util.text.ImmutableText$CompositeNode.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(java.lang.CharSequence, int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.util.text.ImmutableText.getChars(int, int, char[], int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.util.text.CharArrayUtil.getChars(java.lang.CharSequence, char[], int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "char[] com.intellij.util.text.CharArrayUtil.fromSequence(java.lang.CharSequence, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.String com.intellij.util.text.CharSequenceSubSequence.toString()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.String com.intellij.execution.impl.EditorHyperlinkSupport.getLineText(com.intellij.openapi.editor.Document, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "com.intellij.execution.ConsoleFolding com.intellij.execution.impl.ConsoleViewImpl.foldingForLine(java.util.List, int, com.intellij.openapi.editor.Document)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xac", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.lambda$updateFoldings$18(com.intellij.openapi.editor.Editor, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.FoldingModel.runBatchFoldingOperation(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.updateFoldings(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.highlightHyperlinksAndFoldings(int, com.intellij.openapi.util.Expirable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x282", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "165205115" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean sun.java2d.pipe.ValidatePipe.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.util.ui.StartupUiUtil.drawImage(java.awt.Graphics, java.awt.Image)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10b", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.doPaintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.lambda$paintTrack$0(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.paintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "154328" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x78", + "lines": [ + "double sun.awt.geom.Order3.refine(double, double, double, double, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x148", + "lines": [ + "double sun.awt.geom.Order3.TforY(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "double sun.awt.geom.Order3.XforY(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x190", + "lines": [ + "int sun.awt.geom.Curve.compareTo(sun.awt.geom.Curve, double[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "int sun.awt.geom.Edge.compareTo(sun.awt.geom.Edge, double[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x156", + "lines": [ + "java.util.Vector sun.awt.geom.AreaOp.pruneEdges(java.util.Vector)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.util.Vector sun.awt.geom.AreaOp.calculate(java.util.Vector, java.util.Vector)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void java.awt.geom.Area.intersect(java.awt.geom.Area)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "java.awt.Shape sun.java2d.SunGraphics2D.intersectByArea(java.awt.Shape, java.awt.Shape, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "java.awt.Shape sun.java2d.SunGraphics2D.intersectShapes(java.awt.Shape, java.awt.Shape, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void sun.java2d.SunGraphics2D.clip(java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x78", + "lines": [ + "void com.intellij.ui.icons.HoledIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.actionSystem.ex.ActionButtonLook.paintIconImpl(java.awt.Graphics, com.intellij.openapi.actionSystem.ActionButtonComponent, javax.swing.Icon, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.wm.impl.customFrameDecorations.header.toolbar.HeaderToolbarButtonLook.paintIcon(java.awt.Graphics, com.intellij.openapi.actionSystem.ActionButtonComponent, javax.swing.Icon, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "void com.intellij.execution.ui.RunWidgetButtonLook.paintIcon(java.awt.Graphics, com.intellij.openapi.actionSystem.ActionButtonComponent, javax.swing.Icon, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd4", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionButtonWithText.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionToolbarImpl.lambda$paint$5(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionToolbarImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.util.animation.AlphaAnimationContext.paintWithComposite(java.awt.Graphics2D, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.util.animation.AlphaAnimationContext.paint(java.awt.Graphics, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionToolbarImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionToolbarImpl.lambda$paint$5(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionToolbarImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.util.animation.AlphaAnimationContext.paintWithComposite(java.awt.Graphics2D, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.util.animation.AlphaAnimationContext.paint(java.awt.Graphics, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionToolbarImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbf", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.GraphicsCallback$PaintCallback.run(java.awt.Component, java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "void sun.awt.SunGraphicsCallback.runOneComponent(java.awt.Component, java.awt.Rectangle, java.awt.Graphics, java.awt.Shape, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "void sun.awt.SunGraphicsCallback.runComponents(java.awt.Component[], java.awt.Graphics, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void java.awt.Container.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "void java.awt.Window.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.wm.impl.IdeFrameImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8e", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "43405846" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.LinePainter2D.lambda$paint$0(java.awt.Graphics2D, java.awt.geom.Path2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.LinePainter2D$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x341", + "lines": [ + "void com.intellij.ui.paint.LinePainter2D.paint(java.awt.Graphics2D, double, double, double, double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.ui.paint.LinePainter2D.paint(java.awt.Graphics2D, double, double, double, double, com.intellij.ui.paint.LinePainter2D$StrokeType, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void com.intellij.openapi.rd.GraphicsExKt.paint2DLine(java.awt.Graphics2D, double, double, double, double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void com.intellij.openapi.rd.GraphicsExKt.paint2DLine(java.awt.Graphics2D, java.awt.Point, java.awt.Point, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void com.intellij.ui.tabs.impl.JBDefaultTabPainter.paintBorderLine(java.awt.Graphics2D, int, java.awt.Point, java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x97", + "lines": [ + "void com.intellij.execution.ui.layout.impl.JBRunnerTabs$JBRunnerTabsBorder.paintBorder(java.awt.Component, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void javax.swing.JComponent.paintBorder(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x106", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "43313" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.paint(java.awt.Graphics2D, double, double, double, double, java.lang.Double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdd", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paintThumb(java.awt.Graphics2D, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x292", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "215902" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean java.util.HashMap$HashIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70", + "lines": [ + "void java.util.HashMap.putMapEntries(java.util.Map, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object java.util.HashMap.clone()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "java.lang.Object java.awt.RenderingHints.clone()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "java.lang.Object java.awt.Toolkit.getDesktopProperty(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "int com.intellij.util.ui.StartupUiUtil.doGetLcdContrastValueForSplash(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "int com.intellij.util.ui.StartupUiUtil.getLcdContrastValue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int com.intellij.util.ui.UIUtil.getLcdContrastValue()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.ex.util.EditorUIUtil.setupAntialiasing(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "243368572" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.util.List com.intellij.openapi.editor.impl.InlayModelImpl.getElementsInRange(com.intellij.openapi.editor.impl.IntervalTreeImpl, int, int, java.util.function.Predicate, java.util.Comparator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.util.List com.intellij.openapi.editor.impl.InlayModelImpl.getBlockElementsInRange(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void com.intellij.openapi.editor.impl.view.VisualLinesIterator.setInlays()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.util.List com.intellij.openapi.editor.impl.view.VisualLinesIterator.getBlockInlaysAbove()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.openapi.editor.impl.view.VisualLinesIterator.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x298", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "256465463" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$1.lambda$paint$0(java.awt.Graphics2D, java.awt.geom.Path2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x166", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$1.paint(java.awt.Graphics2D, double, double, double, double, java.lang.Double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$1.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$1.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20b", + "lines": [ + "void com.intellij.util.ui.ButtonlessScrollBarUI.doPaintThumb(java.awt.Graphics, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.ui.ButtonlessScrollBarUI.paintThumb(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.paintThumb(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.fileEditor.impl.EditorTabs.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "31856" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2bf51", + "lines": [ + "XInternAtom[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x73373", + "lines": [ + "libX11.so.6.4.0 0x73373[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x64830", + "lines": [ + "libX11.so.6.4.0 0x64830[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x4ec41", + "lines": [ + "XSetICValues[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x3f688", + "lines": [ + "Java_sun_awt_X11_XInputMethod_adjustCandidatesNativeWindowPosition[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "void sun.awt.X11.XInputMethod.adjustCandidatesNativeWindowPosition(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22c", + "lines": [ + "void sun.awt.X11.XInputMethod.updateCandidatesNativeWindowPosition(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker.updateImCandidatesNativeWindowPosition(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker.lambda$onDispatchEvent$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "297914" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d61", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$1.lambda$paint$0(java.awt.Graphics2D, java.awt.geom.Path2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x166", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$1.paint(java.awt.Graphics2D, double, double, double, double, java.lang.Double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$1.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$1.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdd", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paintThumb(java.awt.Graphics2D, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x292", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "55600121" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f6dd3", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, int, java.lang.Runnable, java.lang.Object, java.lang.Runnable, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void javax.swing.RepaintManager.scheduleProcessingRunnable(sun.awt.AppContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "void javax.swing.RepaintManager.addInvalidComponent(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void javax.swing.JComponent.revalidate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorSizeManager.onTextLayoutPerformed(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6c", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorSizeManager.textLayoutPerformed(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout$Chunk.ensureLayout(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LineLayout$VisualOrderIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintLineFragments(com.intellij.openapi.editor.impl.view.VisualLinesIterator, int, com.intellij.openapi.editor.impl.view.EditorPainter$LineFragmentPainter, com.intellij.openapi.editor.impl.view.EditorPainter$Session$MarginWidthConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "189266645" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.awt.Toolkit.notifyAWTEventListeners(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x118", + "lines": [ + "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Void java.awt.EventQueue$5.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$5.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "317141541" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.lambda$containsAny$0(java.util.List, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings$$Lambda+\u003chidden\u003e.value(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.containsAny(java.lang.String, java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean com.intellij.execution.console.ConsoleFoldingSettings.shouldFoldLine(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean com.intellij.execution.console.SubstringConsoleFolding.shouldFoldLine(com.intellij.openapi.project.Project, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "com.intellij.execution.ConsoleFolding com.intellij.execution.impl.ConsoleViewImpl.foldingForLine(java.util.List, int, com.intellij.openapi.editor.Document)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xac", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.lambda$updateFoldings$18(com.intellij.openapi.editor.Editor, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.editor.impl.FoldingModelImpl.runBatchFoldingOperation(java.lang.Runnable, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.FoldingModel.runBatchFoldingOperation(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.updateFoldings(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.highlightHyperlinksAndFoldings(int, com.intellij.openapi.util.Expirable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x282", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2721766990" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object javax.swing.ArrayTable.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "java.lang.Object javax.swing.JComponent.getClientProperty(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "com.intellij.ui.components.JBScrollPane$Alignment com.intellij.ui.components.JBScrollPane$Alignment.get(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8d", + "lines": [ + "void com.intellij.ui.components.JBViewport$ViewBorder.addViewInsets(javax.swing.JComponent, java.awt.Insets)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4a", + "lines": [ + "java.awt.Insets com.intellij.ui.components.JBViewport$ViewBorder.getBorderInsets(java.awt.Component, java.awt.Insets)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.awt.Insets javax.swing.border.AbstractBorder.getBorderInsets(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.awt.Insets javax.swing.JComponent.getInsets()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.awt.Insets com.intellij.openapi.editor.impl.view.EditorView.getInsets()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xeb", + "lines": [ + "void com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.init(com.intellij.openapi.editor.impl.view.EditorView, int, int, int, int, int, java.lang.Runnable, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.\u003cinit\u003e(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.VisualLinesIterator, java.lang.Runnable, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.util.Iterator com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.lambda$create$1(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.VisualLinesIterator, java.lang.Runnable, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.util.Iterator com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator$$Lambda+\u003chidden\u003e.iterator()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintLineFragments(com.intellij.openapi.editor.impl.view.VisualLinesIterator, int, com.intellij.openapi.editor.impl.view.EditorPainter$LineFragmentPainter, com.intellij.openapi.editor.impl.view.EditorPainter$Session$MarginWidthConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "76846124" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x73", + "lines": [ + "com.intellij.util.IntPair com.intellij.openapi.editor.impl.view.EditorSizeManager.calculateTextPreferredWidth(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorSizeManager.getTextPreferredWidth()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorSizeManager.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.lambda$getPreferredSize$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.view.EditorView$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.lambda$getPreferredSize$53()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorComponentImpl.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cb", + "lines": [ + "void com.intellij.ui.components.JBScrollPane$Layout.layoutContainer(java.awt.Container)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.Container.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.lambda$layout$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void java.awt.Container.doLayout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "52046532" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcaca", + "lines": [ + "libxcb.so.1.1.0 0xcaca[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44ae8", + "lines": [ + "_XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44e1c", + "lines": [ + "_XGetRequest[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x3801", + "lines": [ + "XRenderFillRectangle[]@:0" + ], + "mapping": "0x2000-0x9000@0x2000 libXrender.so.1.3.0(e821feb66aa550e614a0eea45ff19ef30702fa14)" + }, + { + "address": "0x2e24b", + "lines": [ + "Java_sun_java2d_xr_XRBackendNative_renderRectangle[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, short, short, short, short, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, sun.java2d.xr.XRColor, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe7", + "lines": [ + "void sun.java2d.xr.MaskTileManager.compositeSingleTile(sun.java2d.xr.XRSurfaceData, sun.java2d.xr.MaskTile, sun.java2d.xr.DirtyRegion, boolean, int, int, sun.java2d.xr.XRColor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d", + "lines": [ + "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.paint(java.awt.Graphics2D, double, double, double, double, java.lang.Double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdd", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paintThumb(java.awt.Graphics2D, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x292", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "59234" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.awt.Toolkit.notifyAWTEventListeners(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x118", + "lines": [ + "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Void java.awt.EventQueue$5.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$5.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "19865495" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object javax.swing.ArrayTable.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "java.lang.Object javax.swing.JComponent.getClientProperty(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.ui.ClientProperty.get(java.awt.Component, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "boolean com.intellij.ui.ClientProperty.isSet(java.awt.Component, java.lang.Object, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean com.intellij.ui.ClientProperty.isTrue(java.awt.Component, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.ui.tabs.TabInfo.isPinned()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean com.intellij.ui.tabs.impl.TabLabel.isPinned()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.awt.Dimension com.intellij.ui.tabs.impl.TabLabel.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.awt.Dimension com.intellij.openapi.fileEditor.impl.EditorTabLabel.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.ui.tabs.impl.singleRow.SingleRowLayout.layoutLabels(com.intellij.ui.tabs.impl.singleRow.SingleRowPassInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x93", + "lines": [ + "com.intellij.ui.tabs.impl.LayoutPassInfo com.intellij.ui.tabs.impl.singleRow.SingleRowLayout.layoutSingleRow(java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe7", + "lines": [ + "void com.intellij.ui.tabs.impl.JBTabsImpl.doLayout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "704487" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "long sun.awt.X11.XlibUtil.getParentWindow(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "boolean sun.awt.X11.XMouseInfoPeer.isWindowUnderMouse(java.awt.Window)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.awt.Component java.awt.Component.findUnderMouseInWindow(java.awt.PointerInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.awt.Point java.awt.Component.getMousePosition()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean com.intellij.openapi.ui.UiUtils.isComponentUnderMouse(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.EditorFloatingToolbar$EditorFloatingToolbarComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.AbstractFloatingToolbarComponent$ToolbarTransparentComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.access$nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState$lambda$0(kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function1, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object java.util.concurrent.atomic.AtomicReference.updateAndGet(java.util.function.UnaryOperator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState(kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator._init_$lambda$2(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.actionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void javax.swing.Timer.fireActionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void javax.swing.Timer$DoPostEvent.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "35960" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6270e0", + "lines": [ + "AccessInternal::PostRuntimeDispatch::oop_access_barrier(oopDesc*, long, oopDesc*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9f707e", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.event.ComponentEvent.\u003cinit\u003e(java.awt.Component, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.event.InputEvent.\u003cinit\u003e(java.awt.Component, int, long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void java.awt.event.MouseEvent.\u003cinit\u003e(java.awt.Component, int, long, int, int, int, int, int, int, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.event.MouseEvent.\u003cinit\u003e(java.awt.Component, int, long, int, int, int, int, boolean, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52", + "lines": [ + "java.awt.event.MouseEvent com.intellij.util.ui.MouseEventAdapter.convert(java.awt.event.MouseEvent, java.awt.Component, int, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.awt.event.MouseEvent com.intellij.util.ui.MouseEventAdapter.convert(java.awt.event.MouseEvent, java.awt.Component, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.awt.event.MouseEvent com.intellij.util.ui.MouseEventAdapter.convert(java.awt.event.MouseEvent, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10c", + "lines": [ + "boolean com.intellij.openapi.wm.impl.IdeGlassPaneImpl.preprocess(java.awt.event.MouseEvent, boolean, javax.swing.JRootPane)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "boolean com.intellij.openapi.wm.impl.IdeGlassPaneImpl.dispatchMouseEvent(java.awt.event.MouseEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "boolean com.intellij.openapi.wm.impl.IdeGlassPaneImpl.dispatch(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean com.intellij.ide.IdeEventQueue.dispatchByCustomDispatchers(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe3", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "84191124" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.editor.impl.RangeMarkerTree.documentChanged(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.lambda$changedUpdate$1(com.intellij.openapi.editor.event.DocumentListener[], com.intellij.openapi.editor.event.DocumentEvent, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeNonCancelableSection$3(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$computeInNonCancelableSection$4(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.Cancellation.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeNonCancelableSection(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c0", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.deleteString(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.trimToSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb1", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "788318139" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Object, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "java.awt.Container javax.swing.BufferStrategyPaintManager.fetchRoot(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "32639" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44ae8", + "lines": [ + "_XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44e1c", + "lines": [ + "_XGetRequest[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x5562", + "lines": [ + "XRenderCompositeText32[]@:0" + ], + "mapping": "0x2000-0x9000@0x2000 libXrender.so.1.3.0(e821feb66aa550e614a0eea45ff19ef30702fa14)" + }, + { + "address": "0x2f82f", + "lines": [ + "Java_sun_java2d_xr_XRBackendNative_XRenderCompositeTextNative[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRBackendNative.XRenderCompositeTextNative(int, int, int, int, int, long, int[], int[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void sun.java2d.xr.XRBackendNative.XRenderCompositeText(byte, int, int, int, int, int, int, int, int, sun.java2d.xr.GrowableEltArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void sun.java2d.xr.XRCompositeManager.compositeText(sun.java2d.xr.XRSurfaceData, int, int, int, int, sun.java2d.xr.GrowableEltArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x349", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x135", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawChars(int, int, com.jediterm.terminal.model.CharBuffer, com.jediterm.terminal.TextStyle, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x115", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawCharacters(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, java.awt.Graphics2D, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel$6.consume(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbe", + "lines": [ + "void com.jediterm.terminal.model.TerminalLine.process(int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void com.jediterm.terminal.model.LinesBuffer.processLines(int, int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void com.jediterm.terminal.model.TerminalTextBuffer.processHistoryAndScreenLines(int, int, com.jediterm.terminal.StyledTextConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "17463251" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2aebe", + "lines": [ + "X11SD_CreateSharedImage[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c081", + "lines": [ + "X11SD_GetImageReal[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c7e8", + "lines": [ + "X11SD_GetRasInfo[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x24bf8", + "lines": [ + "Java_sun_java2d_loops_Blit_Blit[]@:0" + ], + "mapping": "0x1f000-0xa3000@0x1f000 libawt.so(28898f3f4b6ead999b4a61692fd5c4b42c0bb2ac)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.loops.Blit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf0", + "lines": [ + "sun.java2d.xr.XRSurfaceData sun.java2d.xr.XRPMBlitLoops.cacheToTmpSurface(sun.java2d.SurfaceData, sun.java2d.xr.XRSurfaceData, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void sun.java2d.xr.XrSwToPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.util.ui.StartupUiUtil.drawImage(java.awt.Graphics, java.awt.Image)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10b", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.doPaintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.lambda$paintTrack$0(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.paintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.fileEditor.impl.EditorTabs.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15565884" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x36447", + "lines": [ + "XQueryPointer[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x32749", + "lines": [ + "Java_sun_awt_X11_XlibWrapper_XQueryPointer[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "boolean sun.awt.X11.XlibWrapper.XQueryPointer(long, long, long, long, long, long, long, long, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "int sun.awt.X11.XMouseInfoPeer.fillPointWithCoords(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "java.awt.PointerInfo java.awt.MouseInfo.getPointerInfo()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.awt.PointerInfo java.awt.Component$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.Component$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.awt.Point java.awt.Component.getMousePosition()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean com.intellij.openapi.ui.UiUtils.isComponentUnderMouse(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.EditorFloatingToolbar$EditorFloatingToolbarComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.AbstractFloatingToolbarComponent$ToolbarTransparentComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.access$nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState$lambda$0(kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function1, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object java.util.concurrent.atomic.AtomicReference.updateAndGet(java.util.function.UnaryOperator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState(kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator._init_$lambda$2(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.actionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void javax.swing.Timer.fireActionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void javax.swing.Timer$DoPostEvent.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "32189" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$1.lambda$paint$0(java.awt.Graphics2D, java.awt.geom.Path2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x166", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$1.paint(java.awt.Graphics2D, double, double, double, double, java.lang.Double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$1.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$1.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdd", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paintThumb(java.awt.Graphics2D, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x292", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "84390" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "com.intellij.util.text.ImmutableText$InnerLeaf com.intellij.util.text.ImmutableText.findLeaf(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "char com.intellij.util.text.ImmutableText.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "int com.intellij.openapi.util.text.Strings.countChars(java.lang.CharSequence, char, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "int com.intellij.openapi.util.text.Strings.countChars(java.lang.CharSequence, char, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int com.intellij.openapi.util.text.Strings.countChars(java.lang.CharSequence, char)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "int com.intellij.openapi.util.text.StringUtil.countChars(java.lang.CharSequence, char)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int com.intellij.openapi.util.text.StringUtil.countNewLines(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int com.intellij.openapi.editor.impl.EditorImpl.countLineFeeds(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdd", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$EditorDocumentAdapter.documentChanged(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.lambda$changedUpdate$1(com.intellij.openapi.editor.event.DocumentListener[], com.intellij.openapi.editor.event.DocumentEvent, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeNonCancelableSection$3(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$computeInNonCancelableSection$4(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.Cancellation.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeNonCancelableSection(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c0", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.deleteString(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.trimToSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb1", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "113112988" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "java.awt.Point javax.swing.SwingUtilities.convertPoint(java.awt.Component, java.awt.Point, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "java.awt.Rectangle javax.swing.SwingUtilities.convertRectangle(java.awt.Component, java.awt.Rectangle, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean com.intellij.openapi.wm.impl.ToolWindowImpl.isTouchingHeader(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52", + "lines": [ + "void com.intellij.openapi.wm.impl.ToolWindowImpl.updateScrolledState()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.wm.impl.ToolWindowImpl.access$updateScrolledState(com.intellij.openapi.wm.impl.ToolWindowImpl)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.openapi.wm.impl.ToolWindowImpl$createContentManager$5.invoke(com.intellij.ui.ScrollPaneTracker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.wm.impl.ToolWindowImpl$createContentManager$5.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.ui.ScrollPaneTracker$registerScrollPane$1.invoke(com.intellij.ui.ScrollPaneScrolledState)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.ui.ScrollPaneTracker$registerScrollPane$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ui.ScrollPaneScrolledStateTracker.fireCallback(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.ScrollPaneScrolledStateTracker.access$fireCallback(com.intellij.ui.ScrollPaneScrolledStateTracker, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b", + "lines": [ + "void com.intellij.ui.ScrollPaneScrolledStateTracker$ScrollBarValueListener.adjustmentValueChanged(java.awt.event.AdjustmentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void javax.swing.JScrollBar.fireAdjustmentValueChanged(int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "void javax.swing.JScrollBar$ModelListener.stateChanged(javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "void com.intellij.ui.components.JBScrollBar$Model.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.setRangeProperties(int, int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void javax.swing.JScrollBar.setValues(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x79", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI.syncScrollPaneWithViewport()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI$Handler.stateChanged(javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void javax.swing.JViewport.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void javax.swing.JViewport$ViewListener.componentResized(java.awt.event.ComponentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.Component.processComponentEvent(java.awt.event.ComponentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.fireResized()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.validateSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$EditorDocumentAdapter.documentChanged(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.lambda$changedUpdate$1(com.intellij.openapi.editor.event.DocumentListener[], com.intellij.openapi.editor.event.DocumentEvent, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeNonCancelableSection$3(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$computeInNonCancelableSection$4(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.Cancellation.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeNonCancelableSection(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c0", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "48052" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44ae8", + "lines": [ + "_XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x1f885", + "lines": [ + "XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x0", + "lines": [ + "void sun.awt.X11.XlibWrapper.XFlush(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9c", + "lines": [ + "void sun.awt.GlobalCursorManager._updateCursor(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void sun.awt.GlobalCursorManager.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.X11.XComponentPeer.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.awt.Component.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "57348960" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean java.util.concurrent.CompletableFuture$Signaller.block()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.ForkJoinPool.unmanagedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void java.util.concurrent.ForkJoinPool.managedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "java.lang.Object java.util.concurrent.CompletableFuture.timedGet(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "java.lang.Object java.util.concurrent.CompletableFuture.get(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.lang.Object org.jetbrains.concurrency.AsyncPromise.get(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Object org.jetbrains.concurrency.AsyncPromise.blockingGet(int, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "boolean com.intellij.execution.impl.AsyncFilterRunner.isQuick(org.jetbrains.concurrency.Promise)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void com.intellij.execution.impl.AsyncFilterRunner.highlightHyperlinks(com.intellij.openapi.project.Project, com.intellij.execution.filters.Filter, int, int, com.intellij.openapi.util.Expirable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.execution.impl.EditorHyperlinkSupport.highlightHyperlinksLater(com.intellij.execution.filters.Filter, int, int, com.intellij.openapi.util.Expirable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.highlightHyperlinksAndFoldings(int, com.intellij.openapi.util.Expirable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x282", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1139772220" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object javax.swing.ArrayTable.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "java.lang.Object javax.swing.JComponent.getClientProperty(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "com.intellij.ui.components.JBScrollPane$Alignment com.intellij.ui.components.JBScrollPane$Alignment.get(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x125", + "lines": [ + "void com.intellij.ui.components.JBViewport$ViewBorder.addViewInsets(javax.swing.JComponent, java.awt.Insets)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.awt.Insets com.intellij.ui.components.JBViewport.getViewInsets(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e7", + "lines": [ + "void com.intellij.ui.components.JBScrollPane$Layout.layoutContainer(java.awt.Container)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.Container.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.lambda$layout$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void java.awt.Container.doLayout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2848341" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.util.ArrayList.forEach(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.fileEditor.impl.EditorTabs.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "6084544" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "int com.intellij.util.text.ImmutableText.length()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "int com.intellij.openapi.editor.impl.DocumentImpl.getTextLength()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.visualLineToOffset(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorView.visualLineToOffset(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int com.intellij.openapi.editor.impl.EditorImpl.visualLineStartOffset(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa6", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.lambda$paintComponent$10(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "112619253" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "int com.intellij.util.text.ImmutableText.length()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LogicalPositionCache.isSimpleText(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LogicalPositionCache.documentChanged(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.lambda$changedUpdate$1(com.intellij.openapi.editor.event.DocumentListener[], com.intellij.openapi.editor.event.DocumentEvent, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeNonCancelableSection$3(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$computeInNonCancelableSection$4(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.Cancellation.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeNonCancelableSection(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c0", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "339844805" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int com.intellij.util.text.ImmutableText$CompositeNode.length()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "com.intellij.util.text.ImmutableText$InnerLeaf com.intellij.util.text.ImmutableText.findLeaf(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "char com.intellij.util.text.ImmutableText.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "int com.intellij.openapi.util.text.Strings.countChars(java.lang.CharSequence, char, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "int com.intellij.openapi.util.text.Strings.countChars(java.lang.CharSequence, char, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int com.intellij.openapi.util.text.Strings.countChars(java.lang.CharSequence, char)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "int com.intellij.openapi.util.text.StringUtil.countChars(java.lang.CharSequence, char)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int com.intellij.openapi.util.text.StringUtil.countNewLines(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int com.intellij.openapi.editor.impl.EditorImpl.countLineFeeds(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdd", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$EditorDocumentAdapter.documentChanged(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.lambda$changedUpdate$1(com.intellij.openapi.editor.event.DocumentListener[], com.intellij.openapi.editor.event.DocumentEvent, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeNonCancelableSection$3(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$computeInNonCancelableSection$4(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.Cancellation.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeNonCancelableSection(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c0", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.deleteString(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.trimToSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb1", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "16330" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd1366e", + "lines": [ + "PlatformEvent::park_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce0f93", + "lines": [ + "ObjectMonitor::EnterI(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce1a71", + "lines": [ + "ObjectMonitor::enter(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf2bd33", + "lines": [ + "ObjectSynchronizer::enter(Handle, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc2bda", + "lines": [ + "SharedRuntime::complete_monitor_locking_C(oopDesc*, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x66ffe23f176a6e33", + "lines": [ + "_complete_monitor_locking_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "com.intellij.openapi.application.impl.FlushQueue$RunnableInfo com.intellij.openapi.application.impl.FlushQueue.pollNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "12011" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x73", + "lines": [ + "int com.intellij.openapi.editor.ex.util.SegmentArray.findSegmentIndex(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter$HighlighterIteratorImpl.\u003cinit\u003e(com.intellij.openapi.editor.ex.util.LexerEditorHighlighter, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52", + "lines": [ + "com.intellij.openapi.editor.highlighter.HighlighterIterator com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.createIterator(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcb", + "lines": [ + "void com.intellij.openapi.editor.impl.view.IterationState.\u003cinit\u003e(com.intellij.openapi.editor.ex.EditorEx, int, int, com.intellij.openapi.editor.impl.view.CaretData, boolean, boolean, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x90", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout$Chunk.ensureLayout(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LineLayout$VisualOrderIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintLineFragments(com.intellij.openapi.editor.impl.view.VisualLinesIterator, int, com.intellij.openapi.editor.impl.view.EditorPainter$LineFragmentPainter, com.intellij.openapi.editor.impl.view.EditorPainter$Session$MarginWidthConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "396585912" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.ThreadLocal$ThreadLocalMap java.lang.ThreadLocal.getMap(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object java.lang.ThreadLocal.get(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.lang.ThreadLocal.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "com.intellij.openapi.editor.impl.CaretImpl com.intellij.openapi.editor.impl.CaretModelImpl.getCurrentCaret()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.editor.Caret com.intellij.openapi.editor.impl.CaretModelImpl.getCurrentCaret()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.editor.LogicalPosition com.intellij.openapi.editor.CaretModel.getLogicalPosition()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x227", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "241906060" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x135", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawChars(int, int, com.jediterm.terminal.model.CharBuffer, com.jediterm.terminal.TextStyle, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x115", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawCharacters(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, java.awt.Graphics2D, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel$6.consume(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbe", + "lines": [ + "void com.jediterm.terminal.model.TerminalLine.process(int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void com.jediterm.terminal.model.LinesBuffer.processLines(int, int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void com.jediterm.terminal.model.TerminalTextBuffer.processHistoryAndScreenLines(int, int, com.jediterm.terminal.StyledTextConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "362757" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2aee4", + "lines": [ + "X11SD_CreateSharedImage[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c081", + "lines": [ + "X11SD_GetImageReal[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c7e8", + "lines": [ + "X11SD_GetRasInfo[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x24bf8", + "lines": [ + "Java_sun_java2d_loops_Blit_Blit[]@:0" + ], + "mapping": "0x1f000-0xa3000@0x1f000 libawt.so(28898f3f4b6ead999b4a61692fd5c4b42c0bb2ac)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.loops.Blit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf0", + "lines": [ + "sun.java2d.xr.XRSurfaceData sun.java2d.xr.XRPMBlitLoops.cacheToTmpSurface(sun.java2d.SurfaceData, sun.java2d.xr.XRSurfaceData, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void sun.java2d.xr.XrSwToPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.util.ui.StartupUiUtil.drawImage(java.awt.Graphics, java.awt.Image)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10b", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.doPaintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.lambda$paintTrack$0(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.paintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.fileEditor.impl.EditorTabs.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "171724" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "sun.font.XRGlyphCacheEntry[] sun.font.XRGlyphCache.cacheGlyphs(sun.font.GlyphList, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.util.ArrayList.forEach(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "13574" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage$default(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.ui.icons.ScaledResultIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "void com.intellij.ui.icons.CachedImageIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa8", + "lines": [ + "void com.intellij.ui.icons.HoledIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "void javax.swing.plaf.basic.BasicLabelUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.openapi.wm.impl.content.BaseLabel.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.openapi.wm.impl.content.ContentLabel.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void com.intellij.toolWindow.ToolWindowHeader.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "341706570" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.changePrioritizing(com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10933" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object java.util.HashMap.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPointIfRegistered(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPoint(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.BaseExtensionPointName.getPointImpl(com.intellij.openapi.extensions.AreaInstance)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.util.List com.intellij.openapi.extensions.ExtensionPointName.getExtensionList()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean com.intellij.openapi.editor.impl.DocumentImpl.isWritable()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.impl.EditorImpl.getBackgroundIgnoreForced()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.impl.EditorImpl.lambda$getBackgroundColor$50()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.impl.EditorImpl.getBackgroundColor()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.awt.Color com.intellij.ui.JBColor.getColor()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "int com.intellij.ui.JBColor.getRGB()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void sun.java2d.SunGraphics2D.validateColor()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void sun.java2d.SunGraphics2D.setColor(java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "842955572" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2aebe", + "lines": [ + "X11SD_CreateSharedImage[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c081", + "lines": [ + "X11SD_GetImageReal[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c7e8", + "lines": [ + "X11SD_GetRasInfo[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x24bf8", + "lines": [ + "Java_sun_java2d_loops_Blit_Blit[]@:0" + ], + "mapping": "0x1f000-0xa3000@0x1f000 libawt.so(28898f3f4b6ead999b4a61692fd5c4b42c0bb2ac)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.loops.Blit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf0", + "lines": [ + "sun.java2d.xr.XRSurfaceData sun.java2d.xr.XRPMBlitLoops.cacheToTmpSurface(sun.java2d.SurfaceData, sun.java2d.xr.XRSurfaceData, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void sun.java2d.xr.XrSwToPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ui.StartupUiUtil.drawImage(java.awt.Graphics, java.awt.image.BufferedImage, java.awt.image.BufferedImageOp, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void com.intellij.util.ui.RegionPainter$Image.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.ui.stripe.ErrorStripePainter.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "void com.intellij.ui.stripe.Updater.lambda$new$0(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.stripe.Updater$$Lambda+\u003chidden\u003e.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26d", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "137281687" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.resumeImpl(java.lang.Object, int, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.resumeImpl$default(kotlinx.coroutines.CancellableContinuationImpl, java.lang.Object, int, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.resumeWith(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "boolean kotlinx.coroutines.flow.SharedFlowImpl.tryEmit(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.diagnostic.PerformanceWatcherImpl.stopCurrentTaskAndReEmit(com.intellij.diagnostic.PerformanceWatcherImpl$FreezeCheckerTask)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.diagnostic.PerformanceWatcherImpl.edtEventStarted()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "68332" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object sun.awt.AppContext.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "javax.swing.RepaintManager javax.swing.RepaintManager.currentManager(sun.awt.AppContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "javax.swing.RepaintManager javax.swing.RepaintManager.currentManager(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "javax.swing.RepaintManager javax.swing.RepaintManager.currentManager(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "boolean javax.swing.JViewport.canUseWindowBlitter()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6c", + "lines": [ + "void javax.swing.JViewport.setViewPosition(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void com.intellij.ui.components.JBViewport.setViewPosition(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15e", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI.syncScrollPaneWithViewport()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI$Handler.stateChanged(javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void javax.swing.JViewport.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x163", + "lines": [ + "void javax.swing.JViewport.setViewPosition(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void com.intellij.ui.components.JBViewport.setViewPosition(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI$Handler.vsbStateChanged(javax.swing.JViewport, javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI$Handler.stateChanged(javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "void com.intellij.ui.components.JBScrollBar$Model.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.setRangeProperties(int, int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void javax.swing.JScrollBar.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "void com.intellij.ui.components.JBScrollBar.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl._scrollVertically(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable.lambda$new$0(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable$$Lambda+\u003chidden\u003e.accept(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.util.animation.Animation.update(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11c", + "lines": [ + "void com.intellij.util.animation.JBAnimator$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "592869360" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f6e01", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "61919" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "boolean sun.java2d.xr.MutableInteger.equals(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object java.util.HashMap.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "sun.font.XRGlyphCacheEntry sun.font.XRGlyphCache.getEntryForPointer(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "sun.font.XRGlyphCacheEntry[] sun.font.XRGlyphCache.cacheGlyphs(sun.font.GlyphList, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.util.ArrayList.forEach(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "198557854" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcaca", + "lines": [ + "libxcb.so.1.1.0 0xcaca[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44ae8", + "lines": [ + "_XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44e1c", + "lines": [ + "_XGetRequest[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x5562", + "lines": [ + "XRenderCompositeText32[]@:0" + ], + "mapping": "0x2000-0x9000@0x2000 libXrender.so.1.3.0(e821feb66aa550e614a0eea45ff19ef30702fa14)" + }, + { + "address": "0x2f82f", + "lines": [ + "Java_sun_java2d_xr_XRBackendNative_XRenderCompositeTextNative[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRBackendNative.XRenderCompositeTextNative(int, int, int, int, int, long, int[], int[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void sun.java2d.xr.XRBackendNative.XRenderCompositeText(byte, int, int, int, int, int, int, int, int, sun.java2d.xr.GrowableEltArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void sun.java2d.xr.XRCompositeManager.compositeText(sun.java2d.xr.XRSurfaceData, int, int, int, int, sun.java2d.xr.GrowableEltArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x349", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x135", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawChars(int, int, com.jediterm.terminal.model.CharBuffer, com.jediterm.terminal.TextStyle, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x115", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawCharacters(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, java.awt.Graphics2D, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel$6.consume(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbe", + "lines": [ + "void com.jediterm.terminal.model.TerminalLine.process(int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void com.jediterm.terminal.model.LinesBuffer.processLines(int, int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void com.jediterm.terminal.model.TerminalTextBuffer.processHistoryAndScreenLines(int, int, com.jediterm.terminal.StyledTextConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "249047615" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe28b", + "lines": [ + "xcb_wait_for_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x46257", + "lines": [ + "_XReadEvents[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2b478", + "lines": [ + "XIfEvent[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x737aa", + "lines": [ + "libX11.so.6.4.0 0x737aa[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x74e94", + "lines": [ + "libX11.so.6.4.0 0x74e94[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x78b39", + "lines": [ + "_XimRead[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x648a7", + "lines": [ + "libX11.so.6.4.0 0x648a7[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x4ec41", + "lines": [ + "XSetICValues[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x3f688", + "lines": [ + "Java_sun_awt_X11_XInputMethod_adjustCandidatesNativeWindowPosition[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "void sun.awt.X11.XInputMethod.adjustCandidatesNativeWindowPosition(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22c", + "lines": [ + "void sun.awt.X11.XInputMethod.updateCandidatesNativeWindowPosition(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker.updateImCandidatesNativeWindowPosition(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker.lambda$onDispatchEvent$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "320327676" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "com.intellij.util.text.ImmutableText$InnerLeaf com.intellij.util.text.ImmutableText.findLeaf(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "char com.intellij.util.text.ImmutableText.charAt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "boolean com.intellij.util.DocumentUtil.isSurrogatePair(com.intellij.openapi.editor.Document, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.util.DocumentUtil.isInsideSurrogatePair(com.intellij.openapi.editor.Document, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int com.intellij.util.DocumentUtil.alignToCodePointBoundary(com.intellij.openapi.editor.Document, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.offsetToVisualLine(int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.lambda$visualLineToOffset$0(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper$$Lambda+\u003chidden\u003e.applyAsInt(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "int com.intellij.util.ObjectUtils.binarySearch(int, int, java.util.function.IntUnaryOperator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.visualLineToOffset(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "com.intellij.openapi.editor.LogicalPosition com.intellij.openapi.editor.impl.view.EditorCoordinateMapper.visualToLogicalPosition(com.intellij.openapi.editor.VisualPosition)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "com.intellij.openapi.editor.LogicalPosition com.intellij.openapi.editor.impl.view.EditorView.visualToLogicalPosition(com.intellij.openapi.editor.VisualPosition)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "com.intellij.openapi.editor.LogicalPosition com.intellij.openapi.editor.impl.EditorImpl.lambda$visualToLogicalPosition$59(com.intellij.openapi.editor.VisualPosition)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "com.intellij.openapi.editor.LogicalPosition com.intellij.openapi.editor.impl.EditorImpl.visualToLogicalPosition(com.intellij.openapi.editor.VisualPosition)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "int com.intellij.openapi.editor.Editor.visualPositionToOffset(com.intellij.openapi.editor.VisualPosition)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.editor.impl.CaretImpl.updateVisualLineInfo()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void com.intellij.openapi.editor.impl.CaretImpl.updateCachedState()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void com.intellij.openapi.editor.impl.CaretImpl.updateCachedStateIfNeeded()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "com.intellij.openapi.editor.VisualPosition com.intellij.openapi.editor.impl.CaretImpl.getVisualPosition()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "com.intellij.openapi.editor.VisualPosition com.intellij.openapi.editor.CaretModel.getVisualPosition()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "com.intellij.util.IntPair com.intellij.openapi.editor.impl.view.EditorSizeManager.calculateTextPreferredWidth(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorSizeManager.getTextPreferredWidth()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorSizeManager.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.lambda$getPreferredSize$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.view.EditorView$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.lambda$getPreferredSize$53()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.validateSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$EditorDocumentAdapter.documentChanged(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.lambda$changedUpdate$1(com.intellij.openapi.editor.event.DocumentListener[], com.intellij.openapi.editor.event.DocumentEvent, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeNonCancelableSection$3(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$computeInNonCancelableSection$4(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.Cancellation.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeNonCancelableSection(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c0", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.deleteString(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.trimToSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb1", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "316907394" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8f", + "lines": [ + "int com.intellij.openapi.util.text.Strings.countChars(java.lang.CharSequence, char, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "int com.intellij.openapi.util.text.Strings.countChars(java.lang.CharSequence, char, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int com.intellij.openapi.util.text.Strings.countChars(java.lang.CharSequence, char)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "int com.intellij.openapi.util.text.StringUtil.countChars(java.lang.CharSequence, char)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int com.intellij.openapi.util.text.StringUtil.countNewLines(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int com.intellij.openapi.editor.impl.EditorImpl.countLineFeeds(java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$EditorDocumentAdapter.documentChanged(com.intellij.openapi.editor.event.DocumentEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.lambda$changedUpdate$1(com.intellij.openapi.editor.event.DocumentListener[], com.intellij.openapi.editor.event.DocumentEvent, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeNonCancelableSection$3(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$computeInNonCancelableSection$4(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.Cancellation.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeInNonCancelableSection(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeNonCancelableSection(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c0", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(com.intellij.openapi.editor.event.DocumentEvent, long, java.lang.CharSequence, com.intellij.openapi.editor.impl.DocumentImpl$DelayedExceptions)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe6", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.updateText(com.intellij.util.text.ImmutableCharSequence, int, java.lang.CharSequence, java.lang.CharSequence, boolean, long, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "void com.intellij.openapi.editor.impl.DocumentImpl.insertString(int, java.lang.CharSequence)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl.flushDeferredText()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.doRun()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.execution.impl.ConsoleViewImpl$FlushRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runAsCoroutine(boolean, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runAsCoroutine(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.Alarm$Request.lambda$runSafely$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.Alarm$Request$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.QueueProcessor.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.util.Alarm$Request.runSafely(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.util.Alarm$Request.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.Propagation$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "87118811" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object com.intellij.platform.instanceContainer.internal.LazyInstanceHolder.tryGetInstance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "java.lang.Object com.intellij.serviceContainer.ComponentManagerImpl.doGetService(java.lang.Class, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object com.intellij.serviceContainer.ComponentManagerImpl.getService(java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "boolean com.intellij.ide.PowerSaveMode.isEnabled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "boolean com.intellij.ui.components.ScrollSettings.isEligibleFor(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void com.intellij.ui.components.JBScrollBar.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl._scrollHorizontally(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable.lambda$new$0(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable$$Lambda+\u003chidden\u003e.accept(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.util.animation.Animation.update(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11c", + "lines": [ + "void com.intellij.util.animation.JBAnimator$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1683483286" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "java.lang.Object javax.swing.UIDefaults.getFromResourceBundle(java.lang.Object, java.util.Locale)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object javax.swing.UIDefaults.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "java.lang.Object javax.swing.MultiUIDefaults.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.awt.Insets javax.swing.UIDefaults.getInsets(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.awt.Insets javax.swing.UIManager.getInsets(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.awt.Insets com.intellij.util.ui.JBInsets$UIDefaultsSupplier.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.ui.JBInsets$UIDefaultsSupplier.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.awt.Insets com.intellij.util.ui.JBInsets.unscaledNoCopy()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.ui.JBInsets.update()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "com.intellij.util.ui.JBInsets com.intellij.util.ui.JBInsets.create(java.util.function.Supplier, java.awt.Insets)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "com.intellij.util.ui.JBInsets com.intellij.util.ui.JBInsets.create(java.lang.String, java.awt.Insets)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "com.intellij.util.ui.JBInsets com.intellij.util.ui.JBUI.insets(java.lang.String, com.intellij.util.ui.JBInsets)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.awt.Insets com.intellij.util.ui.JBUI$CurrentTheme$EditorTabs.tabInsets()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "com.intellij.util.ui.JBInsets com.intellij.openapi.fileEditor.impl.EditorTabs.getTabLabelInsets()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "int com.intellij.openapi.fileEditor.impl.EditorTabLabel.getPreferredHeight()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.awt.Dimension com.intellij.openapi.fileEditor.impl.EditorTabLabel.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.ui.tabs.impl.singleRow.SingleRowLayout.layoutLabels(com.intellij.ui.tabs.impl.singleRow.SingleRowPassInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x93", + "lines": [ + "com.intellij.ui.tabs.impl.LayoutPassInfo com.intellij.ui.tabs.impl.singleRow.SingleRowLayout.layoutSingleRow(java.util.List)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe7", + "lines": [ + "void com.intellij.ui.tabs.impl.JBTabsImpl.doLayout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "100249" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67fb5b", + "lines": [ + "vframeStreamCommon::next()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9f6dee", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.event.ComponentEvent.\u003cinit\u003e(java.awt.Component, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void java.awt.Component.notifyNewBounds(boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x108", + "lines": [ + "void java.awt.Component.reshape(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void javax.swing.JComponent.reshape(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void java.awt.Component.setBounds(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void java.awt.Component.move(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.Component.setLocation(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x156", + "lines": [ + "void javax.swing.JViewport.setViewPosition(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void com.intellij.ui.components.JBViewport.setViewPosition(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI$Handler.vsbStateChanged(javax.swing.JViewport, javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI$Handler.stateChanged(javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "void com.intellij.ui.components.JBScrollBar$Model.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.setRangeProperties(int, int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void javax.swing.JScrollBar.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "void com.intellij.ui.components.JBScrollBar.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl._scrollVertically(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable.lambda$new$0(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable$$Lambda+\u003chidden\u003e.accept(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.util.animation.Animation.update(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11c", + "lines": [ + "void com.intellij.util.animation.JBAnimator$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "258977777" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x101def1", + "lines": [ + "LinuxWaitBarrier::wait(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb28b1", + "lines": [ + "SafepointSynchronize::block(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdbadfe", + "lines": [ + "SafepointMechanism::process(JavaThread*, bool, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb3d49", + "lines": [ + "ThreadSafepointState::handle_polling_page_exception()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdb3ecd", + "lines": [ + "SafepointSynchronize::handle_polling_page_exception(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xbbe75b763de09db9", + "lines": [ + "SafepointBlob[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "boolean com.intellij.openapi.editor.colors.ColorKey.equals(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object java.util.HashMap.get(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.colors.impl.AbstractColorsScheme.getDirectlyDefinedColor(com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.colors.impl.AbstractColorsScheme.getDirectlyDefinedColor(com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.colors.impl.EditorColorsSchemeImpl.getColor(com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.impl.EditorImpl$MyColorSchemeDelegate.getColor(com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.colors.impl.DelegateColorScheme.getColor(com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.impl.EditorImpl$MyColorSchemeDelegate.getColor(com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.impl.EditorImpl$OpaqueAwareScrollBar.lambda$new$0(com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$OpaqueAwareScrollBar$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "java.awt.Color com.intellij.openapi.editor.colors.EditorColorsUtil.getColor(java.awt.Component, com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.awt.Color com.intellij.ui.components.ScrollBarPainter.getColor(java.awt.Component, com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.awt.Color com.intellij.ui.components.ScrollBarPainter.lambda$getColor$1(java.util.function.Supplier, com.intellij.openapi.editor.colors.ColorKey, com.intellij.openapi.editor.colors.ColorKey)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.components.ScrollBarPainter$$Lambda+\u003chidden\u003e.get()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.awt.Color com.intellij.ui.JBColor.getColor()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "int com.intellij.ui.JBColor.getRGB()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdd", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paintThumb(java.awt.Graphics2D, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x292", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "16276" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f6dd3", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "27281" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "int com.intellij.util.text.ImmutableText.length()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "boolean com.intellij.util.DocumentUtil.isSurrogatePair(com.intellij.openapi.editor.Document, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.util.DocumentUtil.isInsideSurrogatePair(com.intellij.openapi.editor.Document, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x108", + "lines": [ + "void com.intellij.openapi.editor.impl.view.IterationState.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ad", + "lines": [ + "void com.intellij.openapi.editor.impl.view.IterationState.\u003cinit\u003e(com.intellij.openapi.editor.ex.EditorEx, int, int, com.intellij.openapi.editor.impl.view.CaretData, boolean, boolean, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.paintEditorBackgrounds(java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.lambda$paintComponent$10(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "156602562" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Object, java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "java.awt.Container javax.swing.BufferStrategyPaintManager.fetchRoot(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "304331592" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "com.intellij.platform.instanceContainer.internal.InstanceHolder com.intellij.platform.instanceContainer.internal.InstanceContainerState.getByClass(java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "com.intellij.platform.instanceContainer.internal.InstanceHolder com.intellij.platform.instanceContainer.internal.InstanceContainerImpl.getInstanceHolder(java.lang.Class, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "java.lang.Object com.intellij.serviceContainer.ComponentManagerImpl.doGetService(java.lang.Class, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "java.lang.Object com.intellij.openapi.client.ClientAwareComponentManager.postGetService(java.lang.Class, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "java.lang.Object com.intellij.serviceContainer.ComponentManagerImpl.getService(java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "com.intellij.openapi.editor.ex.EditorSettingsExternalizable com.intellij.openapi.editor.ex.EditorSettingsExternalizable.getInstance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "int com.intellij.terminal.JBTerminalSystemSettingsProviderBase.caretBlinkingMs()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "int com.jediterm.terminal.ui.TerminalPanel.getBlinkingPeriod()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.jediterm.terminal.ui.TerminalPanel$TerminalCursor.cursorShouldChangeBlinkState(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel$TerminalCursor.changeStateIfNeeded()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel$WeakRedrawTimer.actionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void javax.swing.Timer.fireActionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void javax.swing.Timer$DoPostEvent.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "123244832" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.ForkJoinPool.unmanagedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void java.util.concurrent.ForkJoinPool.managedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "java.awt.AWTEvent java.awt.EventQueue.getNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.awt.AWTEvent com.intellij.ide.IdeEventQueue.getNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "29770801089" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2b05e", + "lines": [ + "X11SD_GetSharedImage[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c081", + "lines": [ + "X11SD_GetImageReal[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c7e8", + "lines": [ + "X11SD_GetRasInfo[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x24bf8", + "lines": [ + "Java_sun_java2d_loops_Blit_Blit[]@:0" + ], + "mapping": "0x1f000-0xa3000@0x1f000 libawt.so(28898f3f4b6ead999b4a61692fd5c4b42c0bb2ac)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.loops.Blit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf0", + "lines": [ + "sun.java2d.xr.XRSurfaceData sun.java2d.xr.XRPMBlitLoops.cacheToTmpSurface(sun.java2d.SurfaceData, sun.java2d.xr.XRSurfaceData, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void sun.java2d.xr.XrSwToPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void sun.java2d.SurfaceDataProxy.updateSurfaceData(sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd", + "lines": [ + "sun.java2d.SurfaceData sun.java2d.SurfaceDataProxy.replaceData(sun.java2d.SurfaceData, int, sun.java2d.loops.CompositeType, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x66", + "lines": [ + "sun.java2d.SurfaceData sun.java2d.SurfaceData.getSourceSurfaceData(java.awt.Image, int, sun.java2d.loops.CompositeType, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean sun.java2d.pipe.ValidatePipe.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.util.ui.StartupUiUtil.drawImage(java.awt.Graphics, java.awt.Image)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10b", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.doPaintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.lambda$paintTrack$0(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.paintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1324800" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2b05e", + "lines": [ + "X11SD_GetSharedImage[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c081", + "lines": [ + "X11SD_GetImageReal[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c7e8", + "lines": [ + "X11SD_GetRasInfo[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x24bf8", + "lines": [ + "Java_sun_java2d_loops_Blit_Blit[]@:0" + ], + "mapping": "0x1f000-0xa3000@0x1f000 libawt.so(28898f3f4b6ead999b4a61692fd5c4b42c0bb2ac)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.loops.Blit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf0", + "lines": [ + "sun.java2d.xr.XRSurfaceData sun.java2d.xr.XRPMBlitLoops.cacheToTmpSurface(sun.java2d.SurfaceData, sun.java2d.xr.XRSurfaceData, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void sun.java2d.xr.XrSwToPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean sun.java2d.pipe.ValidatePipe.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.util.ui.StartupUiUtil.drawImage(java.awt.Graphics, java.awt.Image)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10b", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.doPaintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.lambda$paintTrack$0(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.paintTrack(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "190272" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.awt.Point sun.awt.X11.XDecoratedPeer.getLocationOnScreen()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.awt.Point java.awt.Component.getLocationOnScreen_NoTreeLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.awt.Point java.awt.Component.getLocationOnScreen()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void sun.awt.X11.XInputMethod.updateCandidatesNativeWindowPosition(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker.updateImCandidatesNativeWindowPosition(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker.lambda$onDispatchEvent$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void sun.awt.X11.XInputMethod$ClientComponentCaretPositionTracker$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11451" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2aee4", + "lines": [ + "X11SD_CreateSharedImage[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c081", + "lines": [ + "X11SD_GetImageReal[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x2c7e8", + "lines": [ + "X11SD_GetRasInfo[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x24bf8", + "lines": [ + "Java_sun_java2d_loops_Blit_Blit[]@:0" + ], + "mapping": "0x1f000-0xa3000@0x1f000 libawt.so(28898f3f4b6ead999b4a61692fd5c4b42c0bb2ac)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.loops.Blit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf0", + "lines": [ + "sun.java2d.xr.XRSurfaceData sun.java2d.xr.XRPMBlitLoops.cacheToTmpSurface(sun.java2d.SurfaceData, sun.java2d.xr.XRSurfaceData, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void sun.java2d.xr.XrSwToPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ui.StartupUiUtil.drawImage(java.awt.Graphics, java.awt.image.BufferedImage, java.awt.image.BufferedImageOp, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void com.intellij.util.ui.RegionPainter$Image.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.ui.stripe.ErrorStripePainter.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "void com.intellij.ui.stripe.Updater.lambda$new$0(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.stripe.Updater$$Lambda+\u003chidden\u003e.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26d", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "17456582" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.awt.Point sun.awt.X11.XDecoratedPeer.getLocationOnScreen()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "java.awt.Point java.awt.Component.getLocationOnScreen_NoTreeLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.awt.Point java.awt.Component.getLocationOnScreen()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.awt.Point java.awt.Component.pointRelativeToComponent(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "java.awt.Component java.awt.Component.findUnderMouseInWindow(java.awt.PointerInfo)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.awt.Point java.awt.Component.getMousePosition()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean com.intellij.openapi.ui.UiUtils.isComponentUnderMouse(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.EditorFloatingToolbar$EditorFloatingToolbarComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.AbstractFloatingToolbarComponent$ToolbarTransparentComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.access$nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState$lambda$0(kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function1, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object java.util.concurrent.atomic.AtomicReference.updateAndGet(java.util.function.UnaryOperator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState(kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator._init_$lambda$2(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.actionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void javax.swing.Timer.fireActionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void javax.swing.Timer$DoPostEvent.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "36318" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean it.unimi.dsi.fastutil.objects.ObjectLinkedOpenHashSet.addAndMoveToFirst(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.editor.impl.view.TextLayoutCache.onChunkAccess(com.intellij.openapi.editor.impl.view.LineLayout$Chunk)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout$Chunk.ensureLayout(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LineLayout$VisualOrderIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorSizeManager.calculateLineWidth(com.intellij.openapi.editor.impl.view.VisualLinesIterator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorSizeManager.getVisualLineWidth(com.intellij.openapi.editor.impl.view.VisualLinesIterator, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52", + "lines": [ + "com.intellij.util.IntPair com.intellij.openapi.editor.impl.view.EditorSizeManager.calculateTextPreferredWidth(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad", + "lines": [ + "int com.intellij.openapi.editor.impl.view.EditorSizeManager.getTextPreferredWidth()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorSizeManager.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.lambda$getPreferredSize$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.view.EditorView$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.view.EditorView.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.lambda$getPreferredSize$53()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorImpl.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.awt.Dimension com.intellij.openapi.editor.impl.EditorComponentImpl.getPreferredSize()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cb", + "lines": [ + "void com.intellij.ui.components.JBScrollPane$Layout.layoutContainer(java.awt.Container)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.Container.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.lambda$layout$0()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$MyScrollPane.layout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void java.awt.Container.doLayout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "49254964" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa0035", + "lines": [ + "lll_mutex_lock_optimized[]@:0", + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x277e6", + "lines": [ + "libX11.so.6.4.0 0x277e6[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x5549", + "lines": [ + "XRenderCompositeText32[]@:0" + ], + "mapping": "0x2000-0x9000@0x2000 libXrender.so.1.3.0(e821feb66aa550e614a0eea45ff19ef30702fa14)" + }, + { + "address": "0x2f82f", + "lines": [ + "Java_sun_java2d_xr_XRBackendNative_XRenderCompositeTextNative[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRBackendNative.XRenderCompositeTextNative(int, int, int, int, int, long, int[], int[], int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void sun.java2d.xr.XRBackendNative.XRenderCompositeText(byte, int, int, int, int, int, int, int, int, sun.java2d.xr.GrowableEltArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void sun.java2d.xr.XRCompositeManager.compositeText(sun.java2d.xr.XRSurfaceData, int, int, int, int, sun.java2d.xr.GrowableEltArray)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x349", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x135", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawChars(int, int, com.jediterm.terminal.model.CharBuffer, com.jediterm.terminal.TextStyle, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x115", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.drawCharacters(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, java.awt.Graphics2D, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel$6.consume(int, int, com.jediterm.terminal.TextStyle, com.jediterm.terminal.model.CharBuffer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbe", + "lines": [ + "void com.jediterm.terminal.model.TerminalLine.process(int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void com.jediterm.terminal.model.LinesBuffer.processLines(int, int, com.jediterm.terminal.StyledTextConsumer, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x50", + "lines": [ + "void com.jediterm.terminal.model.TerminalTextBuffer.processHistoryAndScreenLines(int, int, com.jediterm.terminal.StyledTextConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.jediterm.terminal.ui.TerminalPanel.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "121578" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$MyChangeListener.stateChanged(javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "void javax.swing.JViewport.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x163", + "lines": [ + "void javax.swing.JViewport.setViewPosition(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void com.intellij.ui.components.JBViewport.setViewPosition(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI$Handler.vsbStateChanged(javax.swing.JViewport, javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x64", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollPaneUI$Handler.stateChanged(javax.swing.event.ChangeEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "void com.intellij.ui.components.JBScrollBar$Model.fireStateChanged()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.setRangeProperties(int, int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void javax.swing.DefaultBoundedRangeModel.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void javax.swing.JScrollBar.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "void com.intellij.ui.components.JBScrollBar.setValue(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl._scrollVertically(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable.lambda$new$0(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.ScrollingModelImpl$AnimatedScrollingRunnable$$Lambda+\u003chidden\u003e.accept(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.util.animation.Animation.update(double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11c", + "lines": [ + "void com.intellij.util.animation.JBAnimator$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "18408018" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa5", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "void sun.java2d.SunGraphics2D.drawString(java.lang.String, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x242", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.doPaintLineNumbers(java.awt.Graphics2D, int, int, int, com.intellij.openapi.editor.LineNumberConverter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.paintLineNumbers(java.awt.Graphics2D, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b9", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.lambda$paintComponent$10(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.lambda$run$1(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.ReadAction.run(com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.fileEditor.impl.EditorTabs.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "79840" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67f6b3", + "lines": [ + "vframeStreamCommon::next()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9f6dee", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, int, java.lang.Runnable, java.lang.Object, java.lang.Runnable, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void javax.swing.RepaintManager.scheduleProcessingRunnable(sun.awt.AppContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "void javax.swing.RepaintManager.addInvalidComponent(javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void javax.swing.JComponent.revalidate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorSizeManager.onTextLayoutPerformed(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6c", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorSizeManager.textLayoutPerformed(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout$Chunk.ensureLayout(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LineLayout$VisualOrderIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintLineFragments(com.intellij.openapi.editor.impl.view.VisualLinesIterator, int, com.intellij.openapi.editor.impl.view.EditorPainter$LineFragmentPainter, com.intellij.openapi.editor.impl.view.EditorPainter$Session$MarginWidthConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "258015911" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc95", + "lines": [ + "libxcb.so.1.1.0 0xcc95[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44ae8", + "lines": [ + "_XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x1f885", + "lines": [ + "XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x0", + "lines": [ + "void sun.awt.X11.XlibWrapper.XFlush(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9c", + "lines": [ + "void sun.awt.GlobalCursorManager._updateCursor(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void sun.awt.GlobalCursorManager.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.X11.XComponentPeer.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.awt.Component.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "457503557" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x324", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.util.ArrayList.forEach(java.util.function.Consumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "545456775" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "boolean java.util.concurrent.DelayQueue.offer(java.util.concurrent.Delayed)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "boolean com.intellij.util.concurrency.AppDelayQueue.offer(com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread$lambda$1(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl$2.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.doRun(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo, com.intellij.openapi.application.ex.ApplicationEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5548" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean com.intellij.openapi.editor.ex.util.EmptyEditorHighlighter$1.atEnd()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f", + "lines": [ + "void com.intellij.openapi.editor.impl.view.IterationState.setAttributes(com.intellij.openapi.editor.markup.TextAttributes, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.editor.impl.view.IterationState.reinit()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14f", + "lines": [ + "void com.intellij.openapi.editor.impl.view.IterationState.advance()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x145", + "lines": [ + "void com.intellij.openapi.editor.impl.view.LineLayout$Chunk.ensureLayout(com.intellij.openapi.editor.impl.view.EditorView, com.intellij.openapi.editor.impl.view.LineLayout$BidiRun, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.LineLayout$VisualOrderIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "boolean com.intellij.openapi.editor.impl.view.VisualLineFragmentsIterator.hasNext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintLineFragments(com.intellij.openapi.editor.impl.view.VisualLinesIterator, int, com.intellij.openapi.editor.impl.view.EditorPainter$LineFragmentPainter, com.intellij.openapi.editor.impl.view.EditorPainter$Session$MarginWidthConsumer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintBackground()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "176574152" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRPMBlit.Blit(sun.java2d.SurfaceData, sun.java2d.SurfaceData, java.awt.Composite, sun.java2d.pipe.Region, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean sun.java2d.pipe.ValidatePipe.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage$default(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.ui.icons.ScaledResultIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "void com.intellij.ui.icons.CachedImageIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void com.intellij.ui.tree.ui.DefaultControl.paint(java.awt.Component, java.awt.Graphics, int, int, int, int, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xeb", + "lines": [ + "void com.intellij.ui.tree.ui.ClassicPainter.paint(java.awt.Component, java.awt.Graphics, int, int, int, int, com.intellij.ui.tree.ui.Control, int, boolean, boolean, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32e", + "lines": [ + "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "23342" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x36447", + "lines": [ + "XQueryPointer[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x32749", + "lines": [ + "Java_sun_awt_X11_XlibWrapper_XQueryPointer[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "boolean sun.awt.X11.XlibWrapper.XQueryPointer(long, long, long, long, long, long, long, long, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "int sun.awt.X11.XMouseInfoPeer.fillPointWithCoords(java.awt.Point)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "java.awt.PointerInfo java.awt.MouseInfo.getPointerInfo()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "boolean com.intellij.openapi.ui.UiUtils.isComponentUnderMouse(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.EditorFloatingToolbar$EditorFloatingToolbarComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean com.intellij.openapi.editor.toolbar.floating.AbstractFloatingToolbarComponent$ToolbarTransparentComponent.isComponentOnHold()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.access$nextState(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$updateState$1.invoke(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState$lambda$0(kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function1, com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$State)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object java.util.concurrent.atomic.AtomicReference.updateAndGet(java.util.function.UnaryOperator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState(kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator.updateState()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator._init_$lambda$2(com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator, java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.toolbar.floating.TransparentComponentAnimator$$Lambda+\u003chidden\u003e.actionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void javax.swing.Timer.fireActionPerformed(java.awt.event.ActionEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void javax.swing.Timer$DoPostEvent.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "25375" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "com.intellij.openapi.util.TextRange com.intellij.openapi.editor.impl.MarkupModelImpl.roundToLineBoundaries(com.intellij.openapi.editor.Document, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.impl.MarkupModelImpl.overlappingIterator(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean com.intellij.openapi.editor.impl.MarkupModelImpl.processRangeHighlightersOverlappingWith(int, int, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "boolean com.intellij.openapi.editor.impl.EditorFilteringMarkupModelEx.processRangeHighlightersOverlappingWith(int, int, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintCustomRenderers(com.intellij.openapi.editor.ex.MarkupModelEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$47(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14988" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa5", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void sun.java2d.pipe.ValidatePipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void sun.java2d.SunGraphics2D.drawString(java.lang.String, float, float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent$SimpleTextRenderer.draw(java.awt.Graphics2D, int, float, float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doDrawString(java.awt.Graphics2D, com.intellij.ui.SimpleColoredComponent$ColoredFragment, int, float, float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ea", + "lines": [ + "int com.intellij.ui.SimpleColoredComponent.doPaintText(java.awt.Graphics2D, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x54", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43e", + "lines": [ + "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "26745" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.lang.Object java.awt.image.DirectColorModel.getDataElements(int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void java.awt.image.BufferedImage.setRGB(int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x160", + "lines": [ + "java.awt.TexturePaint com.intellij.ui.AppUIUtil.createHorizontalGradientTexture(java.awt.Graphics, java.awt.Color, java.awt.Color, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "java.awt.TexturePaint com.intellij.ide.ui.GradientTextureCache.getTexture(java.awt.Graphics2D, int, java.awt.Color, java.awt.Color, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.awt.TexturePaint com.intellij.ide.ui.GradientTextureCache.getTexture$default(com.intellij.ide.ui.GradientTextureCache, java.awt.Graphics2D, int, java.awt.Color, java.awt.Color, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1fd", + "lines": [ + "boolean com.intellij.ide.ProjectWindowCustomizerService.paint(java.awt.Window, javax.swing.JComponent, java.awt.Graphics2D)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void com.intellij.openapi.wm.impl.customFrameDecorations.header.toolbar.ToolbarFrameHeader.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbf", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.GraphicsCallback$PaintCallback.run(java.awt.Component, java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "void sun.awt.SunGraphicsCallback.runOneComponent(java.awt.Component, java.awt.Rectangle, java.awt.Graphics, java.awt.Shape, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "void sun.awt.SunGraphicsCallback.runComponents(java.awt.Component[], java.awt.Graphics, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void java.awt.Container.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "void java.awt.Window.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.wm.impl.IdeFrameImpl.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8e", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "202775735" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcaca", + "lines": [ + "libxcb.so.1.1.0 0xcaca[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44ae8", + "lines": [ + "_XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x1f885", + "lines": [ + "XFlush[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x0", + "lines": [ + "void sun.awt.X11.XlibWrapper.XFlush(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9c", + "lines": [ + "void sun.awt.GlobalCursorManager._updateCursor(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void sun.awt.GlobalCursorManager.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.X11.XComponentPeer.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.awt.Component.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "366873472" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.paint(java.awt.Graphics2D, double, double, double, double, java.lang.Double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20b", + "lines": [ + "void com.intellij.util.ui.ButtonlessScrollBarUI.doPaintThumb(java.awt.Graphics, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.ui.ButtonlessScrollBarUI.paintThumb(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.paintThumb(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "63086" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean javax.swing.JComponent.contains(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.awt.Component java.awt.Container.findComponentAtImpl(int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "java.awt.Component java.awt.Container.findComponentAt(int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "java.awt.Component java.awt.Container$1.findComponentAt(java.awt.Container, int, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7e", + "lines": [ + "void sun.awt.GlobalCursorManager._updateCursor(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void sun.awt.GlobalCursorManager.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.X11.XComponentPeer.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.awt.Component.updateCursorImmediately()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "523441881" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void java.awt.Container.doLayout()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.Container.validateTree()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.awt.Container.validate()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$3.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5e", + "lines": [ + "void javax.swing.RepaintManager.validateInvalidComponents()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "243771830" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.awt.Insets javax.swing.border.AbstractBorder.getBorderInsets(java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "12122559" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x289", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "60861643" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.paint(java.awt.Graphics2D, double, double, double, double, java.lang.Double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20b", + "lines": [ + "void com.intellij.util.ui.ButtonlessScrollBarUI.doPaintThumb(java.awt.Graphics, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.ui.ButtonlessScrollBarUI.paintThumb(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorMarkupModelImpl$MyErrorPanel.paintThumb(java.awt.Graphics, javax.swing.JComponent, java.awt.Rectangle)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void javax.swing.plaf.basic.BasicScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.fileEditor.impl.EditorTabs.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.JLayeredPane.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$16(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWithoutImplicitRead(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x197", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ide.IdeEventQueue.access$_dispatchEvent(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1$1.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "void com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke$lambda$0(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$performActivity$runnableWithWIL$1.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$10(com.intellij.ide.IdeEventQueue, kotlin.jvm.internal.Ref$ObjectRef, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x250", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "283962981" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa4fa7", + "lines": [ + "__new_sem_wait_slow64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xdbe2e1", + "lines": [ + "PosixSemaphore::wait()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x103828a", + "lines": [ + "WorkerThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "58353343472" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a40", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbaa68", + "lines": [ + "Monitor::wait_without_safepoint_check(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7ed51b", + "lines": [ + "G1PrimaryConcurrentRefineThread::wait_for_completed_buffers()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7eda44", + "lines": [ + "G1ConcurrentRefineThread::run_service()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x69920a", + "lines": [ + "ConcurrentGCThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "69480451218" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a6a", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbaa68", + "lines": [ + "Monitor::wait_without_safepoint_check(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf21349", + "lines": [ + "SuspendibleThreadSet::join()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x7ed8b4", + "lines": [ + "G1ConcurrentRefineThread::run_service()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x69920a", + "lines": [ + "ConcurrentGCThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "450077283" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x384b44", + "lines": [ + "MachNode::ideal_reg() const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd94568", + "lines": [ + "PhaseChaitin::get_spillcopy_wide(MachSpillCopyNode::SpillType, Node*, Node*, unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd94d07", + "lines": [ + "PhaseChaitin::split_DEF(Node*, Block*, int, unsigned int, Node**, Node**, GrowableArray, int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd98a83", + "lines": [ + "PhaseChaitin::Split(unsigned int, ResourceArea*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x5c9af6", + "lines": [ + "PhaseChaitin::Register_Allocate()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x672278", + "lines": [ + "Compile::Code_Gen()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x676469", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "468169" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9f351", + "lines": [ + "__pthread_mutex_cond_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bb54", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a40", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbae56", + "lines": [ + "Monitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67b187", + "lines": [ + "CompileQueue::get(CompilerThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67ed51", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1822140350" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6388b5", + "lines": [ + "Opaque1Node::Opcode() const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd53f36", + "lines": [ + "PhaseCCP::push_more_uses(Unique_Node_List\u0026, Node*, Node const*) const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd560eb", + "lines": [ + "PhaseCCP::analyze()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x673e95", + "lines": [ + "Compile::Optimize()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x675e41", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "547122" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcb7375", + "lines": [ + "ProjNode::bottom_type() const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd56109", + "lines": [ + "PhaseCCP::analyze()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x673e95", + "lines": [ + "Compile::Optimize()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x675e41", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "4486525741" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d7c00", + "lines": [ + "ciInstanceKlass::is_boxed_value_offset(int) const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf9411b", + "lines": [ + "TypeOopPtr::TypeOopPtr(Type::TYPES, TypePtr::PTR, ciKlass*, TypeInterfaces const*, bool, ciObject*, int, int, TypePtr const*, int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf94c37", + "lines": [ + "TypeInstPtr::add_offset(long) const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf94ac2", + "lines": [ + "TypeInstPtr::add_offset(long) const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd5683e", + "lines": [ + "PhaseGVN::transform_no_reclaim(Node*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xb66403", + "lines": [ + "LibraryCallKit::inline_unsafe_access(bool, BasicType, LibraryCallKit::AccessKind, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xb88a45", + "lines": [ + "LibraryIntrinsic::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x765c87", + "lines": [ + "Parse::do_call()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd34074", + "lines": [ + "Parse::do_one_block()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd344b4", + "lines": [ + "Parse::do_all_blocks()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd36c34", + "lines": [ + "Parse::Parse(JVMState*, ciMethod*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59c7ea", + "lines": [ + "ParseGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59e1b8", + "lines": [ + "PredictedCallGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x765c87", + "lines": [ + "Parse::do_call()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd34074", + "lines": [ + "Parse::do_one_block()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd344b4", + "lines": [ + "Parse::do_all_blocks()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd36c34", + "lines": [ + "Parse::Parse(JVMState*, ciMethod*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59c7ea", + "lines": [ + "ParseGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59e1b8", + "lines": [ + "PredictedCallGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x765c87", + "lines": [ + "Parse::do_call()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd34074", + "lines": [ + "Parse::do_one_block()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd344b4", + "lines": [ + "Parse::do_all_blocks()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd36c34", + "lines": [ + "Parse::Parse(JVMState*, ciMethod*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59c7ea", + "lines": [ + "ParseGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x675c85", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1401984196" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a40", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbae56", + "lines": [ + "Monitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67b187", + "lines": [ + "CompileQueue::get(CompilerThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67ed51", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "150802294132" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc4d5e2", + "lines": [ + "Matcher::Label_Root(Node const*, State*, Node*, Node*\u0026)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xc4d8ec", + "lines": [ + "Matcher::Label_Root(Node const*, State*, Node*, Node*\u0026)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xc4e564", + "lines": [ + "Matcher::match_tree(Node const*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xc52cc2", + "lines": [ + "Matcher::xform(Node*, int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xc55fd7", + "lines": [ + "Matcher::match()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x671ff1", + "lines": [ + "Compile::Code_Gen()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x676469", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "18627" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5dc823", + "lines": [ + "ciInstanceKlass::get_field_by_offset(int, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf94042", + "lines": [ + "TypeOopPtr::TypeOopPtr(Type::TYPES, TypePtr::PTR, ciKlass*, TypeInterfaces const*, bool, ciObject*, int, int, TypePtr const*, int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf94c37", + "lines": [ + "TypeInstPtr::add_offset(long) const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd56109", + "lines": [ + "PhaseCCP::analyze()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x673e95", + "lines": [ + "Compile::Optimize()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x675e41", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "8077692628" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67f0d0", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7531016596" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a7975", + "lines": [ + "MultiNode::is_CFG() const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xbd4d29", + "lines": [ + "PhaseIdealLoop::build_loop_late(VectorSet\u0026, Node_List\u0026, Node_Stack\u0026)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xbd56a6", + "lines": [ + "PhaseIdealLoop::build_and_optimize()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67676c", + "lines": [ + "PhaseIdealLoop::optimize(PhaseIterGVN\u0026, LoopOptsMode)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x674a06", + "lines": [ + "Compile::Optimize()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x675e41", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3420758380" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd51efc", + "lines": [ + "PhaseIterGVN::add_users_to_worklist(Node*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd5228e", + "lines": [ + "PhaseIterGVN::add_users_to_worklist(Node*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd559f1", + "lines": [ + "PhaseIterGVN::transform_old(Node*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd5180a", + "lines": [ + "PhaseIterGVN::optimize()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xbf5316", + "lines": [ + "PhaseMacroExpand::expand_macro_nodes()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x674736", + "lines": [ + "Compile::Optimize()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x675e41", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1552757476" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd1d7c1", + "lines": [ + "PhaseOutput::FillExceptionTables(unsigned int, unsigned int*, unsigned int*, Label*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd20248", + "lines": [ + "PhaseOutput::fill_buffer(CodeBuffer*, unsigned int*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x672522", + "lines": [ + "Compile::Code_Gen()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x676469", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "4312509119" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd45530", + "lines": [ + "GrowableArrayWithAllocator::grow(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd3bd98", + "lines": [ + "compute_tree_cost(SwitchRange*, SwitchRange*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd3bea7", + "lines": [ + "Parse::linear_search_switch_ranges(Node*, SwitchRange*\u0026, SwitchRange*\u0026)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd3d823", + "lines": [ + "Parse::jump_switch_ranges(Node*, SwitchRange*, SwitchRange*, int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd3e6d9", + "lines": [ + "Parse::do_tableswitch()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd34074", + "lines": [ + "Parse::do_one_block()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd344b4", + "lines": [ + "Parse::do_all_blocks()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd36c34", + "lines": [ + "Parse::Parse(JVMState*, ciMethod*, float)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59c7ea", + "lines": [ + "ParseGenerator::generate(JVMState*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x675c85", + "lines": [ + "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x59b69e", + "lines": [ + "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "6498052915" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcfb0", + "lines": [ + "libxcb.so.1.1.0 0xcfb0[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x40ad5", + "lines": [ + "libX11.so.6.4.0 0x40ad5[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x40c60", + "lines": [ + "libX11.so.6.4.0 0x40c60[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44a59", + "lines": [ + "_XEventsQueued[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x378c7", + "lines": [ + "XEventsQueued[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x0", + "lines": [ + "int sun.awt.X11.XlibWrapper.XEventsQueued(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "204003372" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "483838295" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1ab4", + "lines": [ + "lll_mutex_unlock_optimized[]@:0", + "__GI___pthread_mutex_unlock_usercnt[]@:0", + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2f48f", + "lines": [ + "XNextEvent[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x0", + "lines": [ + "void sun.awt.X11.XlibWrapper.XNextEvent(long, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "16670767" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad7b4", + "lines": [ + "tcache_get_n[]@:0", + "tcache_get[]@:0", + "__GI___libc_malloc[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc4bd", + "lines": [ + "libxcb.so.1.1.0 0xc4bd[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xd047", + "lines": [ + "libxcb.so.1.1.0 0xd047[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x40ad5", + "lines": [ + "libX11.so.6.4.0 0x40ad5[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x40c60", + "lines": [ + "libX11.so.6.4.0 0x40c60[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44a59", + "lines": [ + "_XEventsQueued[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x378c7", + "lines": [ + "XEventsQueued[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x0", + "lines": [ + "int sun.awt.X11.XlibWrapper.XEventsQueued(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "33511968" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb1d39", + "lines": [ + "Unsafe_Unpark[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.unlock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void java.awt.EventQueue.wakeup(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.EventQueue$2.wakeup(java.awt.EventQueue, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.SunToolkit.wakeupEventQueue(java.awt.EventQueue, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void sun.awt.PostEventQueue.postEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8f", + "lines": [ + "void sun.awt.SunToolkit.postEvent(sun.awt.AppContext, java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void sun.awt.X11.XWindow.postEvent(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void sun.awt.X11.XWindow.postEventToEventQueue(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void sun.awt.X11.XContentWindow.postEventToEventQueue(java.awt.AWTEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x162", + "lines": [ + "void sun.awt.X11.XWindow.handleMotionNotify(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void sun.awt.X11.XContentWindow.handleMotionNotify(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde", + "lines": [ + "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x54", + "lines": [ + "void sun.awt.X11.XBaseWindow.dispatchToWindow(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void sun.awt.X11.XToolkit.dispatchEvent(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x218", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "16732862" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45e2f2", + "lines": [ + "__kmalloc_node_track_caller[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed3196", + "lines": [ + "kmalloc_reserve[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed6329", + "lines": [ + "__alloc_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xedcf1f", + "lines": [ + "alloc_skb_with_frags[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xecd2a4", + "lines": [ + "sock_alloc_send_pskb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1080bf7", + "lines": [ + "unix_stream_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec52fd", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e00e8", + "lines": [ + "do_iter_readv_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1820", + "lines": [ + "vfs_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1ae7", + "lines": [ + "do_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1b7b", + "lines": [ + "__x64_sys_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70b6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcaca", + "lines": [ + "libxcb.so.1.1.0 0xcaca[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44a90", + "lines": [ + "_XEventsQueued[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x378c7", + "lines": [ + "XEventsQueued[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x0", + "lines": [ + "int sun.awt.X11.XlibWrapper.XEventsQueued(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "152051697" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock$Sync.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.SunToolkit.awtLock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9bb8e1", + "lines": [ + "jni_invoke_static(JNIEnv_*, JavaValue*, _jobject*, JNICallType, _jmethodID*, JNI_ArgumentPusher*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9bddfa", + "lines": [ + "jni_CallStaticVoidMethod[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x30b1a", + "lines": [ + "Java_sun_awt_X11_XToolkit_waitForEvents[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "void sun.awt.X11.XToolkit.waitForEvents(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1080103918" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void java.util.logging.Logger.log(java.util.logging.Level, java.lang.String, java.lang.Object[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void sun.util.logging.internal.LoggingProviderImpl$JULWrapper.log(sun.util.logging.PlatformLogger$Level, java.lang.String, java.lang.Object[])[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void sun.util.logging.PlatformLogger.finest(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int sun.awt.X11.XMotionEvent.get_x_root()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12e", + "lines": [ + "void sun.awt.X11.XWindow.handleMotionNotify(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void sun.awt.X11.XContentWindow.handleMotionNotify(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde", + "lines": [ + "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x54", + "lines": [ + "void sun.awt.X11.XBaseWindow.dispatchToWindow(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void sun.awt.X11.XToolkit.dispatchEvent(sun.awt.X11.XEvent)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x218", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "749792124" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcaca", + "lines": [ + "libxcb.so.1.1.0 0xcaca[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdd7e", + "lines": [ + "xcb_writev[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x410b8", + "lines": [ + "_XSend[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44a90", + "lines": [ + "_XEventsQueued[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x378c7", + "lines": [ + "XEventsQueued[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x0", + "lines": [ + "int sun.awt.X11.XlibWrapper.XEventsQueued(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3462411135" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x30acf", + "lines": [ + "Java_sun_awt_X11_XToolkit_waitForEvents[]@:0" + ], + "mapping": "0x13000-0x5c000@0x13000 libawt_xawt.so(6cd0b0cd2dbdc01c9055a835e2e07cef80dba444)" + }, + { + "address": "0x0", + "lines": [ + "void sun.awt.X11.XToolkit.waitForEvents(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "25298761244" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd1366e", + "lines": [ + "PlatformEvent::park_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce0f93", + "lines": [ + "ObjectMonitor::EnterI(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce1a71", + "lines": [ + "ObjectMonitor::enter(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf2bd33", + "lines": [ + "ObjectSynchronizer::enter(Handle, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc2bda", + "lines": [ + "SharedRuntime::complete_monitor_locking_C(oopDesc*, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x66ffe23f176a6e33", + "lines": [ + "_complete_monitor_locking_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.push(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.openapi.application.impl.LaterInvocator.invokeLater(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.dispatchCoroutineOnEDT(java.lang.Runnable, com.intellij.openapi.application.ModalityState)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6c", + "lines": [ + "void com.intellij.openapi.application.impl.EdtCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.resumeImpl(java.lang.Object, int, kotlin.jvm.functions.Function1)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.resumeImpl$default(kotlinx.coroutines.CancellableContinuationImpl, java.lang.Object, int, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.resumeUndispatched(kotlinx.coroutines.CoroutineDispatcher, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void kotlinx.coroutines.EventLoopImplBase$DelayedResumeTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "long kotlinx.coroutines.EventLoopImplBase.processNextEvent()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void kotlinx.coroutines.DefaultExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10972" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x103", + "lines": [ + "void kotlinx.coroutines.DefaultExecutor.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "24747795416" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481c82", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x439fef", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x411594", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x411697", + "lines": [ + "runtime.notetsleepg[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x450105", + "lines": [ + "runtime.(*profBuf).read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47118a", + "lines": [ + "runtime/pprof.readProfile[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xf7dc8e", + "lines": [ + "runtime/pprof.profileWriter[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xf7dba4", + "lines": [ + "runtime/pprof.StartCPUProfile.gowrap2[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47fe80", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "2377437359" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481696", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44ef94", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44ef94", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44f0d6", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x447844", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4467a4", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x448eb7", + "lines": [ + "runtime.goexit0[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "110686" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481696", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44d2a4", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44d2a4", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x443e12", + "lines": [ + "runtime.mstart1[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x443d55", + "lines": [ + "runtime.mstart0[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47ddc4", + "lines": [ + "runtime.mstart[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "21283632744" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5555be", + "lines": [ + "do_epoll_pwait.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5564a0", + "lines": [ + "__x64_sys_epoll_pwait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x645f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48532d", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4852c4", + "lines": [ + "internal/runtime/syscall.EpollWait[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x439cd1", + "lines": [ + "runtime.netpoll[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x446c64", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x448eb7", + "lines": [ + "runtime.goexit0[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "8577961299" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481c82", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x439fef", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4113a6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44568b", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44618e", + "lines": [ + "runtime.gcstopm[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44662b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4485ea", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "175496" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5555be", + "lines": [ + "do_epoll_pwait.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5564a0", + "lines": [ + "__x64_sys_epoll_pwait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x645f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48532d", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4852c4", + "lines": [ + "internal/runtime/syscall.EpollWait[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x439cd1", + "lines": [ + "runtime.netpoll[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x446c64", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4485ea", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "106629973952" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x439ff0", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4113a6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44568b", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4470fb", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4485ea", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "5742725287" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481c82", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x439fef", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4113a6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44568b", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4470fb", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x448eb7", + "lines": [ + "runtime.goexit0[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "26670307601" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481c82", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x43a064", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4114d2", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x411608", + "lines": [ + "runtime.notetsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44d3c5", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x443e12", + "lines": [ + "runtime.mstart1[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x443d55", + "lines": [ + "runtime.mstart0[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47ddc4", + "lines": [ + "runtime.mstart[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "23102025396" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xee2f27", + "lines": [ + "__skb_datagram_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xee3196", + "lines": [ + "skb_copy_datagram_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd88c9", + "lines": [ + "tcp_recvmsg_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd9be3", + "lines": [ + "tcp_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10215f3", + "lines": [ + "inet_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec48b5", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec497e", + "lines": [ + "sock_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3456", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e42d8", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4338", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6f99", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48532d", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4a0b0c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4a0b65", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x49eb57", + "lines": [ + "syscall.read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4fde8d", + "lines": [ + "syscall.Read[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x569be4", + "lines": [ + "net.(*netFD).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x57bcc4", + "lines": [ + "net.(*conn).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x591444", + "lines": [ + "net.(*TCPConn).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x630b76", + "lines": [ + "bufio.(*Reader).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x48f38f", + "lines": [ + "io.ReadAtLeast[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa599c4", + "lines": [ + "io.ReadFull[]@:0", + "golang.org/x/net/http2.readFrameHeader[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa5a104", + "lines": [ + "golang.org/x/net/http2.(*Framer).ReadFrame[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xaa40c5", + "lines": [ + "google.golang.org/grpc/internal/transport.(*http2Client).reader[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa9a244", + "lines": [ + "google.golang.org/grpc/internal/transport.newHTTP2Client.gowrap4[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47fe80", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "2570824252" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481c82", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x43a064", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4114d2", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x411608", + "lines": [ + "runtime.notetsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4439fb", + "lines": [ + "runtime.stopTheWorldWithSema[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4432f8", + "lines": [ + "runtime.stopTheWorld.func1[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47dec9", + "lines": [ + "runtime.systemstack[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "10411" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481696", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44ef94", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44ef94", + "lines": [ + "runtime.runqgrab[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44f0d6", + "lines": [ + "runtime.runqsteal[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x447844", + "lines": [ + "runtime.stealWork[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4467a4", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4485ea", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "25172312952" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481c87", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x439fef", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4113a6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44568b", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4470fb", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4485ea", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "978371340" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481c82", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x439fef", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x411024", + "lines": [ + "runtime.lock2[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44612d", + "lines": [ + "runtime.lockWithRank[]@:0", + "runtime.lock[]@:0", + "runtime.gcstopm[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44662b", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4485ea", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "5901" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece5d8", + "lines": [ + "__lock_sock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece693", + "lines": [ + "lock_sock_nested[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd9bcb", + "lines": [ + "tcp_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1085983", + "lines": [ + "inet6_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4852", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec497e", + "lines": [ + "sock_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3456", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e42d8", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4338", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6f99", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48532d", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4a0b0c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4a0b65", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x49eb57", + "lines": [ + "syscall.read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4fde8d", + "lines": [ + "syscall.Read[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x569be4", + "lines": [ + "net.(*netFD).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x57bcc4", + "lines": [ + "net.(*conn).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x591444", + "lines": [ + "net.(*TCPConn).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xdc4e48", + "lines": [ + "github.com/grafana/dskit/middleware.(*countingListenerConn).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x48f38f", + "lines": [ + "io.ReadAtLeast[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa599c4", + "lines": [ + "io.ReadFull[]@:0", + "golang.org/x/net/http2.readFrameHeader[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa5a104", + "lines": [ + "golang.org/x/net/http2.(*Framer).ReadFrame[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa64cb7", + "lines": [ + "golang.org/x/net/http2.(*serverConn).readFrames[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa66544", + "lines": [ + "golang.org/x/net/http2.(*serverConn).serve.gowrap8[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47fe80", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "21301" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x481c82", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x439fef", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4113a6", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x44568b", + "lines": [ + "runtime.mPark[]@:0", + "runtime.stopm[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4470fb", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4481d0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4485ea", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47de4d", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "142350496931" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40748c", + "lines": [ + "runtime.memequal[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x408dc6", + "lines": [ + "runtime.strequal[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x408f05", + "lines": [ + "runtime.efaceeq[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xd788ab", + "lines": [ + "github.com/uber/jaeger-client-go.(*Tracer).startSpanWithOptions[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xd77eef", + "lines": [ + "github.com/uber/jaeger-client-go.(*Tracer).StartSpan[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xd9acea", + "lines": [ + "github.com/opentracing-contrib/go-stdlib/nethttp.MiddlewareFunc.func5[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x844f48", + "lines": [ + "net/http.HandlerFunc.ServeHTTP[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x8732ba", + "lines": [ + "net/http.Handler.ServeHTTP-fm[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa6ddb4", + "lines": [ + "golang.org/x/net/http2.(*serverConn).runHandler[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa6d96b", + "lines": [ + "golang.org/x/net/http2.(*serverConn).scheduleHandler.gowrap1[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47fe80", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "5386615509" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece5d8", + "lines": [ + "__lock_sock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xece693", + "lines": [ + "lock_sock_nested[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd9bcb", + "lines": [ + "tcp_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1085983", + "lines": [ + "inet6_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4852", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec497e", + "lines": [ + "sock_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e3456", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e42d8", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4338", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6f99", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48532d", + "lines": [ + "internal/runtime/syscall.Syscall6[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4a0b0c", + "lines": [ + "syscall.RawSyscall6[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4a0b65", + "lines": [ + "syscall.Syscall[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x49eb57", + "lines": [ + "syscall.read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x4fde8d", + "lines": [ + "syscall.Read[]@:0", + "internal/poll.ignoringEINTRIO[]@:0", + "internal/poll.(*FD).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x569be4", + "lines": [ + "net.(*netFD).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x57bcc4", + "lines": [ + "net.(*conn).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x591444", + "lines": [ + "net.(*TCPConn).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xdc4e48", + "lines": [ + "github.com/grafana/dskit/middleware.(*countingListenerConn).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x100a2f2", + "lines": [ + "golang.org/x/net/http2/h2c.(*bufConn).Read[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x48f38f", + "lines": [ + "io.ReadAtLeast[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa599c4", + "lines": [ + "io.ReadFull[]@:0", + "golang.org/x/net/http2.readFrameHeader[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa5a104", + "lines": [ + "golang.org/x/net/http2.(*Framer).ReadFrame[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa64cb7", + "lines": [ + "golang.org/x/net/http2.(*serverConn).readFrames[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0xa66544", + "lines": [ + "golang.org/x/net/http2.(*serverConn).serve.gowrap8[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + }, + { + "address": "0x47fe80", + "lines": [ + "runtime.goexit[]@:0" + ], + "mapping": "0x400000-0x210e000@0x0 ___1go_build_main_go()" + } + ], + "values": "8933" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd1366e", + "lines": [ + "PlatformEvent::park_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92fe6e", + "lines": [ + "JavaThread::sleep_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e7a83", + "lines": [ + "JVM_Sleep[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void java.lang.Thread.sleep0(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.lang.Thread.sleep(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.diagnostic.JVMResponsivenessMonitor.samplingLoop()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.diagnostic.JVMResponsivenessMonitor$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2000104708" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x985df", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x98d6b", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.util.concurrent.Delayed java.util.concurrent.DelayQueue.take()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void javax.swing.TimerQueue.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "436560292" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.util.concurrent.Delayed java.util.concurrent.DelayQueue.take()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void javax.swing.TimerQueue.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "37092889990" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd1366e", + "lines": [ + "PlatformEvent::park_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92fe6e", + "lines": [ + "JavaThread::sleep_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e7a83", + "lines": [ + "JVM_Sleep[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void java.lang.Thread.sleep0(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void java.lang.Thread.sleep(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "void java.lang.ProcessHandleImpl$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void jdk.internal.misc.InnocuousThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5040120539" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9", + "lines": [ + "int java.util.concurrent.FutureTask.awaitDone(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object java.util.concurrent.FutureTask.get(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.access$flush(com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex.force()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.storage.VfsAwareMapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.CompositeInvertedIndex.flushSecondaryIndex()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher$IndexFlushingState.tryFlushIfNeeded(com.intellij.util.indexing.IndexConfiguration, com.intellij.openapi.util.IntRef, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher.flushAsMuchAsPossibleWithinQuota(com.intellij.openapi.util.IntRef)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.util.io.GentleFlusherBase.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14626531310" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3740735829" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "com.intellij.openapi.application.AccessToken com.intellij.concurrency.ThreadContext.resetThreadContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2090844494" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "boolean com.intellij.openapi.progress.impl.CoreProgressManager.sleepIfNeededToGivePriorityToAnotherThread()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean com.intellij.openapi.progress.impl.ProgressManagerImpl.runCheckCanceledHooks(com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.doCheckCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.checkCanceled()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "boolean com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerEx.lambda$processHighlights$0(com.intellij.lang.annotation.HighlightSeverity, com.intellij.codeInsight.daemon.impl.SeverityRegistrar, com.intellij.util.Processor, com.intellij.openapi.editor.ex.RangeHighlighterEx)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "boolean com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerEx$$Lambda+\u003chidden\u003e.process(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "boolean com.intellij.openapi.editor.impl.MarkupModelImpl.processRangeHighlightersOverlappingWith(int, int, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "boolean com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerEx.processHighlights(com.intellij.openapi.editor.ex.MarkupModelEx, com.intellij.openapi.project.Project, com.intellij.lang.annotation.HighlightSeverity, int, int, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "boolean com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerEx.processHighlights(com.intellij.openapi.editor.Document, com.intellij.openapi.project.Project, com.intellij.lang.annotation.HighlightSeverity, int, int, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "boolean com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl.processHighlightsNearOffset(com.intellij.openapi.editor.Document, com.intellij.openapi.project.Project, com.intellij.lang.annotation.HighlightSeverity, int, boolean, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "com.intellij.codeInsight.daemon.impl.HighlightInfo com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl.findHighlightsByOffset(com.intellij.openapi.editor.Document, int, boolean, boolean, com.intellij.lang.annotation.HighlightSeverity)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "com.intellij.codeInsight.daemon.impl.HighlightInfo com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl.findHighlightByOffset(com.intellij.openapi.editor.Document, int, boolean, com.intellij.lang.annotation.HighlightSeverity)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "com.intellij.codeInsight.daemon.impl.HighlightInfo com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl.findHighlightByOffset(com.intellij.openapi.editor.Document, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "org.rust.ide.highlight.MultispotHighlightingInfo org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt.retrieveMultispotHighlightingInfoBasedOnCaret(com.intellij.openapi.project.Project, com.intellij.openapi.editor.Editor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "org.rust.ide.highlight.MultispotHighlightingInfo org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt.processCaretEvent$lambda$2(boolean, com.intellij.openapi.project.Project, com.intellij.openapi.editor.Editor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt$$Lambda+\u003chidden\u003e.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "org.rust.ide.highlight.MultispotHighlightingInfo org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt.processEvent$lambda$3(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "4702025561" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd1366e", + "lines": [ + "PlatformEvent::park_nanos(long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce0f93", + "lines": [ + "ObjectMonitor::EnterI(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce1a71", + "lines": [ + "ObjectMonitor::enter(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf2bd33", + "lines": [ + "ObjectSynchronizer::enter(Handle, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc2bda", + "lines": [ + "SharedRuntime::complete_monitor_locking_C(oopDesc*, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x66ffe23f176a6e33", + "lines": [ + "_complete_monitor_locking_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.push(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.openapi.application.impl.LaterInvocator.invokeLater(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.invokeLater(java.lang.Runnable, com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.safeTransferToEdt(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "40870" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d61", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9", + "lines": [ + "int java.util.concurrent.FutureTask.awaitDone(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object java.util.concurrent.FutureTask.get(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.access$flush(com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex.force()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.storage.VfsAwareMapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.CompositeInvertedIndex.flushSecondaryIndex()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.psi.stubs.StubIndexImpl.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.psi.stubs.StubUpdatingIndexStorage.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher$IndexFlushingState.tryFlushIfNeeded(com.intellij.util.indexing.IndexConfiguration, com.intellij.openapi.util.IntRef, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher.flushAsMuchAsPossibleWithinQuota(com.intellij.openapi.util.IntRef)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.util.io.GentleFlusherBase.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1385296" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.github.benmanes.caffeine.cache.BoundedLocalCache.clear()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.github.benmanes.caffeine.cache.LocalManualCache.invalidateAll()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.access$flush(com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex.force()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.storage.VfsAwareMapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.CompositeInvertedIndex.flushSecondaryIndex()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.psi.stubs.StubIndexImpl.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.psi.stubs.StubUpdatingIndexStorage.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher$IndexFlushingState.tryFlushIfNeeded(com.intellij.util.indexing.IndexConfiguration, com.intellij.openapi.util.IntRef, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher.flushAsMuchAsPossibleWithinQuota(com.intellij.openapi.util.IntRef)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.util.io.GentleFlusherBase.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3043067981" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9", + "lines": [ + "int java.util.concurrent.FutureTask.awaitDone(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object java.util.concurrent.FutureTask.get(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.access$flush(com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex.force()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.storage.VfsAwareMapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.CompositeInvertedIndex.flushSecondaryIndex()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.psi.stubs.StubIndexImpl.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.psi.stubs.StubUpdatingIndexStorage.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher$IndexFlushingState.tryFlushIfNeeded(com.intellij.util.indexing.IndexConfiguration, com.intellij.openapi.util.IntRef, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher.flushAsMuchAsPossibleWithinQuota(com.intellij.openapi.util.IntRef)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.util.io.GentleFlusherBase.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "17895707491" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98fc6", + "lines": [ + "__GI___lll_lock_wake[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa1ac1", + "lines": [ + "lll_mutex_unlock_optimized[]@:0", + "__GI___pthread_mutex_unlock_usercnt[]@:0", + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13eec", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9", + "lines": [ + "int java.util.concurrent.FutureTask.awaitDone(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object java.util.concurrent.FutureTask.get(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion.access$flush(com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex$Companion)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.AttrBasedFileContentHashForwardIndex.force()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.storage.VfsAwareMapReduceIndex.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.shared.platform.impl.CompositeInvertedIndex.flushSecondaryIndex()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.psi.stubs.StubIndexImpl.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.psi.stubs.StubUpdatingIndexStorage.doFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.lambda$flush$5()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.util.ThrowableRunnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.indexing.impl.MapReduceIndex.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.indexing.composite.CompositeInvertedIndexBase.flush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher$IndexFlushingState.tryFlushIfNeeded(com.intellij.util.indexing.IndexConfiguration, com.intellij.openapi.util.IntRef, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "com.intellij.openapi.util.io.GentleFlusherBase$FlushResult com.intellij.util.indexing.FileBasedIndexImpl$GentleIndexFlusher.flushAsMuchAsPossibleWithinQuota(com.intellij.openapi.util.IntRef)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.util.io.GentleFlusherBase.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ContextCallable.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "685817" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13f46", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x169", + "lines": [ + "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireShared(int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock.lock()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.impl.IntervalTreeImpl.overlappingIterator(com.intellij.openapi.util.TextRange)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.impl.IntervalTreeImpl.mergingOverlappingIterator(com.intellij.openapi.editor.impl.IntervalTreeImpl, com.intellij.openapi.util.TextRange, com.intellij.openapi.editor.impl.IntervalTreeImpl, com.intellij.openapi.util.TextRange, java.util.Comparator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.impl.MarkupModelImpl.overlappingIterator(int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean com.intellij.openapi.editor.impl.MarkupModelImpl.processRangeHighlightersOverlappingWith(int, int, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "boolean com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerEx.processHighlights(com.intellij.openapi.editor.ex.MarkupModelEx, com.intellij.openapi.project.Project, com.intellij.lang.annotation.HighlightSeverity, int, int, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "boolean com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerEx.processHighlights(com.intellij.openapi.editor.Document, com.intellij.openapi.project.Project, com.intellij.lang.annotation.HighlightSeverity, int, int, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "boolean com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl.processHighlightsNearOffset(com.intellij.openapi.editor.Document, com.intellij.openapi.project.Project, com.intellij.lang.annotation.HighlightSeverity, int, boolean, com.intellij.util.Processor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "com.intellij.codeInsight.daemon.impl.HighlightInfo com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl.findHighlightsByOffset(com.intellij.openapi.editor.Document, int, boolean, boolean, com.intellij.lang.annotation.HighlightSeverity)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "com.intellij.codeInsight.daemon.impl.HighlightInfo com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl.findHighlightByOffset(com.intellij.openapi.editor.Document, int, boolean, com.intellij.lang.annotation.HighlightSeverity)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "com.intellij.codeInsight.daemon.impl.HighlightInfo com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl.findHighlightByOffset(com.intellij.openapi.editor.Document, int, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "org.rust.ide.highlight.MultispotHighlightingInfo org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt.retrieveMultispotHighlightingInfoBasedOnCaret(com.intellij.openapi.project.Project, com.intellij.openapi.editor.Editor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "org.rust.ide.highlight.MultispotHighlightingInfo org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt.processCaretEvent$lambda$2(boolean, com.intellij.openapi.project.Project, com.intellij.openapi.editor.Editor)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt$$Lambda+\u003chidden\u003e.invoke()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "org.rust.ide.highlight.MultispotHighlightingInfo org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt.processEvent$lambda$3(kotlin.jvm.functions.Function0)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object org.rust.ide.highlight.RsHighlightMultispotProblemsActivityKt$$Lambda+\u003chidden\u003e.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "135979" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "java.lang.Object java.util.concurrent.LinkedTransferQueue$DualNode.await(java.lang.Object, long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.xfer(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object java.util.concurrent.SynchronousQueue.poll(long, java.util.concurrent.TimeUnit)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x84", + "lines": [ + "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "68750660530" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "void com.intellij.concurrency.ConcurrentLongObjectHashMap.addCount(long, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x182", + "lines": [ + "java.lang.Object com.intellij.concurrency.ConcurrentLongObjectHashMap.putVal(long, java.lang.Object, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.concurrency.ConcurrentLongObjectHashMap.put(long, java.lang.Object)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.setCurrentIndicator(long, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1010689710" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xaafb9", + "lines": [ + "_int_free_merge_chunk[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xab429", + "lines": [ + "_int_free[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xadd9d", + "lines": [ + "__GI___libc_free[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4465aa", + "lines": [ + "ChunkPoolCleaner::task()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf4316c", + "lines": [ + "PeriodicTask::real_time_tick(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcd37ef", + "lines": [ + "WatcherThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "48107771" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a40", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbaa68", + "lines": [ + "Monitor::wait_without_safepoint_check(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcd368c", + "lines": [ + "WatcherThread::sleep() const[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcd3790", + "lines": [ + "WatcherThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "76926077088" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf4318c", + "lines": [ + "PeriodicTask::real_time_tick(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcd37ef", + "lines": [ + "WatcherThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "16958" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a5b8", + "lines": [ + "__GI___prctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa3bae", + "lines": [ + "__pthread_setname_np[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd05212", + "lines": [ + "os::set_native_thread_name(char const*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ed626", + "lines": [ + "JVM_SetNativeThreadName[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void java.lang.Thread.setNativeName(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void java.lang.Thread.setName(java.lang.String)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.util.ConcurrencyUtil.runUnderThreadName(java.lang.String, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5265907" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a40", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbaa68", + "lines": [ + "Monitor::wait_without_safepoint_check(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x8438bd", + "lines": [ + "G1ServiceThread::wait_for_task()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x843c4f", + "lines": [ + "G1ServiceThread::run_service()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x69920a", + "lines": [ + "ConcurrentGCThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "37913941933" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a6a", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbaa68", + "lines": [ + "Monitor::wait_without_safepoint_check(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf21349", + "lines": [ + "SuspendibleThreadSet::join()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x817061", + "lines": [ + "G1MonotonicArenaFreeMemoryTask::execute()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x843bc4", + "lines": [ + "G1ServiceThread::run_task(G1ServiceTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x843c47", + "lines": [ + "G1ServiceThread::run_service()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x69920a", + "lines": [ + "ConcurrentGCThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "30470" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f58c7", + "lines": [ + "GraphBuilder::append_with_bci(Instruction*, int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x4fbee1", + "lines": [ + "GraphBuilder::fill_sync_handler(Instruction*, BlockBegin*, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x509221", + "lines": [ + "GraphBuilder::try_inline_full(ciMethod*, bool, bool, Bytecodes::Code, Instruction*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x504a4c", + "lines": [ + "GraphBuilder::try_inline(ciMethod*, bool, bool, Bytecodes::Code, Instruction*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x504ef0", + "lines": [ + "GraphBuilder::invoke(Bytecodes::Code)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x50641a", + "lines": [ + "GraphBuilder::iterate_bytecodes_for_block(int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x5089dc", + "lines": [ + "GraphBuilder::iterate_all_blocks(bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x50a900", + "lines": [ + "GraphBuilder::GraphBuilder(Compilation*, IRScope*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x510161", + "lines": [ + "IRScope::IRScope(Compilation*, IRScope*, int, ciMethod*, int, bool)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x510207", + "lines": [ + "IR::IR(Compilation*, ciMethod*, int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x4eadce", + "lines": [ + "Compilation::build_hir()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x4ecafb", + "lines": [ + "Compilation::compile_java_method()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x4ecc89", + "lines": [ + "Compilation::compile_method()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x4ed057", + "lines": [ + "Compilation::Compilation(AbstractCompiler*, ciEnv*, ciMethod*, int, BufferBlob*, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x4eddbb", + "lines": [ + "Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67c173", + "lines": [ + "CompileBroker::invoke_compiler_on_method(CompileTask*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x67f0e3", + "lines": [ + "CompileBroker::compiler_thread_loop()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "26255" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f6e09", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, int, java.lang.Runnable, java.lang.Object, java.lang.Runnable, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventQueue.invokeLater(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void javax.swing.SwingUtilities.invokeLater(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.requestFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.push(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.openapi.application.impl.LaterInvocator.invokeLater(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.invokeLater(java.lang.Runnable, com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.invokeLater(java.lang.Runnable, com.intellij.openapi.application.ModalityState)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.util.concurrency.EdtExecutorServiceImpl.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "boolean com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.executeMeInBackendExecutor()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.util.concurrency.AppDelayQueue$TransferThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "205301497" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f6e01", + "lines": [ + "JVM_GetStackAccessControlContext[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, int, java.lang.Runnable, java.lang.Object, java.lang.Runnable, boolean)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventQueue.invokeLater(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void javax.swing.SwingUtilities.invokeLater(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.requestFlush()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.push(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.openapi.application.impl.LaterInvocator.invokeLater(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.invokeLater(java.lang.Runnable, com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.invokeLater(java.lang.Runnable, com.intellij.openapi.application.ModalityState)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.util.concurrency.EdtExecutorServiceImpl.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "boolean com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.executeMeInBackendExecutor()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.util.concurrency.AppDelayQueue$TransferThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "239927540" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.util.concurrent.Delayed java.util.concurrent.DelayQueue.take()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.AppDelayQueue$TransferThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "43698031898" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.util.concurrent.Delayed java.util.concurrent.DelayQueue.take()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.AppDelayQueue$TransferThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2944720777" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd134ba", + "lines": [ + "PlatformEvent::park()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce0e34", + "lines": [ + "ObjectMonitor::EnterI(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xce1a71", + "lines": [ + "ObjectMonitor::enter(JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf2bd33", + "lines": [ + "ObjectSynchronizer::enter(Handle, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xdc2bda", + "lines": [ + "SharedRuntime::complete_monitor_locking_C(oopDesc*, BasicLock*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x66ffe23f176a6e33", + "lines": [ + "_complete_monitor_locking_Java[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.push(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.openapi.application.impl.LaterInvocator.invokeLater(com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition, java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.invokeLater(java.lang.Runnable, com.intellij.openapi.application.ModalityState, com.intellij.openapi.util.Condition)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.invokeLater(java.lang.Runnable, com.intellij.openapi.application.ModalityState)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.util.concurrency.EdtExecutorServiceImpl.execute(java.lang.Runnable)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "boolean com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.executeMeInBackendExecutor()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.util.concurrency.AppDelayQueue$TransferThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5285" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "java.util.concurrent.Delayed java.util.concurrent.DelayQueue.take()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.util.concurrency.AppDelayQueue$TransferThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "25143431" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x210df2", + "lines": [ + "common_nsleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x213dc0", + "lines": [ + "__x64_sys_clock_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c39", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xeca79", + "lines": [ + "__GI___clock_nanosleep[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xf9a26", + "lines": [ + "__GI___nanosleep[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x12972b", + "lines": [ + "usleep[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x401402", + "lines": [ + "main[]@:0" + ], + "mapping": "0x400000-0x404000@0x0 fsnotifier()" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4010e9", + "lines": [ + "fsnotifier 0x4010e9[]@:0" + ], + "mapping": "0x400000-0x404000@0x0 fsnotifier()" + } + ], + "values": "2202047722" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503e45", + "lines": [ + "do_select[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505e05", + "lines": [ + "core_sys_select[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x506328", + "lines": [ + "do_pselect.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5064de", + "lines": [ + "__x64_sys_pselect6[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63cc", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x126c3d", + "lines": [ + "__GI___select[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x40143b", + "lines": [ + "main[]@:0" + ], + "mapping": "0x400000-0x404000@0x0 fsnotifier()" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4010e9", + "lines": [ + "fsnotifier 0x4010e9[]@:0" + ], + "mapping": "0x400000-0x404000@0x0 fsnotifier()" + } + ], + "values": "4053674428" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a40", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbaa68", + "lines": [ + "Monitor::wait_without_safepoint_check(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf4397c", + "lines": [ + "TaskTerminator::offer_termination(TerminatorTerminator*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x85973e", + "lines": [ + "G1ParEvacuateFollowersClosure::do_void()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd8e101", + "lines": [ + "RefProcKeepAliveFinalPhaseTask::rp_work(unsigned int, BoolObjectClosure*, OopClosure*, EnqueueDiscoveredFieldClosure*, VoidClosure*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x8575a0", + "lines": [ + "G1STWRefProcProxyTask::work(unsigned int)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10382bf", + "lines": [ + "WorkerThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7191" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xb8add2", + "lines": [ + "copilot-language-server 0xb8add2[]@:0" + ], + "mapping": "0x91c000-0x1f97000@0x51b000 copilot-language-server(e8e9fc449943f935d469333b1101f224a4c0164f)" + }, + { + "address": "0x11a8d47", + "lines": [ + "copilot-language-server 0x11a8d47[]@:0" + ], + "mapping": "0x91c000-0x1f97000@0x51b000 copilot-language-server(e8e9fc449943f935d469333b1101f224a4c0164f)" + }, + { + "address": "0x95a172", + "lines": [ + "node::SpinEventLoop(node::Environment*)[]@:0" + ], + "mapping": "0x91c000-0x1f97000@0x51b000 copilot-language-server(e8e9fc449943f935d469333b1101f224a4c0164f)" + }, + { + "address": "0xa4802b", + "lines": [ + "node::NodeMainInstance::Run()[]@:0" + ], + "mapping": "0x91c000-0x1f97000@0x51b000 copilot-language-server(e8e9fc449943f935d469333b1101f224a4c0164f)" + }, + { + "address": "0x9d0226", + "lines": [ + "node::Start(int, char**)[]@:0" + ], + "mapping": "0x91c000-0x1f97000@0x51b000 copilot-language-server(e8e9fc449943f935d469333b1101f224a4c0164f)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x94abfb", + "lines": [ + "copilot-language-server 0x94abfb[]@:0" + ], + "mapping": "0x91c000-0x1f97000@0x51b000 copilot-language-server(e8e9fc449943f935d469333b1101f224a4c0164f)" + } + ], + "values": "15014603139" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13a40", + "lines": [ + "PlatformMonitor::wait(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcbaa68", + "lines": [ + "Monitor::wait_without_safepoint_check(unsigned long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xcade5a", + "lines": [ + "MonitorDeflationThread::monitor_deflation_thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "70541175408" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5caa8", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5caa8[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x8bc81", + "lines": [ + "libglib-2.0.so.0.8000.0 0x8bc81[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "27999786510" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7efc", + "lines": [ + "Java_sun_nio_ch_EPoll_wait[]@:0" + ], + "mapping": "0x7000-0x10000@0x7000 libnio.so(647ed74e5bf79fa84c42e2e1ecd1f8fb9dec1ddf)" + }, + { + "address": "0x0", + "lines": [ + "int sun.nio.ch.EPoll.wait(int, long, int, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "int sun.nio.ch.SelectorImpl.lockAndDoSelect(java.util.function.Consumer, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "int sun.nio.ch.SelectorImpl.select(long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3ca", + "lines": [ + "void jdk.internal.net.http.HttpClientImpl$SelectorManager.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "9008903247" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8583a7", + "lines": [ + "void WeakProcessor::Task::work(unsigned int, G1STWIsAliveClosure*, G1KeepAliveClosure*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x10382bf", + "lines": [ + "WorkerThread::run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5141480356" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd13ed3", + "lines": [ + "Parker::park(bool, long)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xfb3a20", + "lines": [ + "Unsafe_Park[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1df", + "lines": [ + "int java.util.concurrent.ForkJoinPool.awaitWork(java.util.concurrent.ForkJoinPool$WorkQueue, int)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "void java.util.concurrent.ForkJoinPool.runWorker(java.util.concurrent.ForkJoinPool$WorkQueue)[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void java.util.concurrent.ForkJoinWorkerThread.run()[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914ac4", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x91640a", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9e6349", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x92b43e", + "lines": [ + "JavaThread::thread_main_inner()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xf7b3b7", + "lines": [ + "Thread::call_run()[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0xd072c9", + "lines": [ + "thread_native_entry(Thread*)[]@:0" + ], + "mapping": "0x2a3000-0x1117000@0x2a3000 libjvm.so(fc8db56dfc04ddf9c6df46d36024c336b73608bf)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11680516799" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1466517", + "lines": [ + "iris_dri.so 0x1466517[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x108fe00", + "lines": [ + "iris_dri.so 0x108fe00[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1091b8e", + "lines": [ + "iris_dri.so 0x1091b8e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "272448843" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x11d7ac", + "lines": [ + "iris_dri.so 0x11d7ac[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfca8a", + "lines": [ + "iris_dri.so 0xfca8a[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "43198658520" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1006272", + "lines": [ + "iris_dri.so 0x1006272[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f1f6", + "lines": [ + "iris_dri.so 0x149f1f6[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "399909203" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x188a11", + "lines": [ + "__memmove_avx_unaligned_erms[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x107fc7a", + "lines": [ + "iris_dri.so 0x107fc7a[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x107fddb", + "lines": [ + "iris_dri.so 0x107fddb[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1091273", + "lines": [ + "iris_dri.so 0x1091273[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "168556367" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1005eae", + "lines": [ + "iris_dri.so 0x1005eae[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x10941dd", + "lines": [ + "iris_dri.so 0x10941dd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "623821194" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xffb314", + "lines": [ + "iris_dri.so 0xffb314[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x100afe7", + "lines": [ + "iris_dri.so 0x100afe7[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f189", + "lines": [ + "iris_dri.so 0x149f189[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1162070791" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9c600", + "lines": [ + "iris_dri.so 0x9c600[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d7ac", + "lines": [ + "iris_dri.so 0x11d7ac[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfca8a", + "lines": [ + "iris_dri.so 0xfca8a[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "45822034" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x149f482", + "lines": [ + "iris_dri.so 0x149f482[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "248816754" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b070", + "lines": [ + "iris_dri.so 0x9b070[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xffb298", + "lines": [ + "iris_dri.so 0xffb298[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x107ffe8", + "lines": [ + "iris_dri.so 0x107ffe8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1091273", + "lines": [ + "iris_dri.so 0x1091273[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3991869679" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10936ac", + "lines": [ + "iris_dri.so 0x10936ac[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "160978417" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98fc6", + "lines": [ + "__GI___lll_lock_wake[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa1ac1", + "lines": [ + "lll_mutex_unlock_optimized[]@:0", + "__GI___pthread_mutex_unlock_usercnt[]@:0", + "___pthread_mutex_unlock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x11d8ac", + "lines": [ + "iris_dri.so 0x11d8ac[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb4a", + "lines": [ + "iris_dri.so 0xfcb4a[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "152131401" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98efa", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait_private[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xab508", + "lines": [ + "_int_free[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xadd9d", + "lines": [ + "__GI___libc_free[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x108386e", + "lines": [ + "iris_dri.so 0x108386e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1082729", + "lines": [ + "iris_dri.so 0x1082729[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x6892c1", + "lines": [ + "iris_dri.so 0x6892c1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3130565" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1082512", + "lines": [ + "iris_dri.so 0x1082512[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x6892c1", + "lines": [ + "iris_dri.so 0x6892c1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "31892" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x689290", + "lines": [ + "iris_dri.so 0x689290[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14914709" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14713f4", + "lines": [ + "iris_dri.so 0x14713f4[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x10937f1", + "lines": [ + "iris_dri.so 0x10937f1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "13606" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xf41d9", + "lines": [ + "iris_dri.so 0xf41d9[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xd14a26", + "lines": [ + "iris_dri.so 0xd14a26[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfecbfb", + "lines": [ + "iris_dri.so 0xfecbfb[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1002d16", + "lines": [ + "iris_dri.so 0x1002d16[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x10059e9", + "lines": [ + "iris_dri.so 0x10059e9[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f404", + "lines": [ + "iris_dri.so 0x149f404[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "41782" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10945a7", + "lines": [ + "iris_dri.so 0x10945a7[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "149864741" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100b75b", + "lines": [ + "iris_dri.so 0x100b75b[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f1b2", + "lines": [ + "iris_dri.so 0x149f1b2[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfcb60", + "lines": [ + "iris_dri.so 0xfcb60[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x11d6db", + "lines": [ + "iris_dri.so 0x11d6db[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "633465850" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e688f", + "lines": [ + "Xorg 0x1e688f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e101e", + "lines": [ + "Xorg 0x1e101e[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x6f1b1", + "lines": [ + "WriteEventsToClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x144304", + "lines": [ + "Xorg 0x144304[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x14b1cb", + "lines": [ + "Xorg 0x14b1cb[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x14b749", + "lines": [ + "Xorg 0x14b749[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "82160" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e688f", + "lines": [ + "Xorg 0x1e688f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e101e", + "lines": [ + "Xorg 0x1e101e[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x6f1b1", + "lines": [ + "WriteEventsToClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1462d8", + "lines": [ + "Xorg 0x1462d8[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1451ea", + "lines": [ + "Xorg 0x1451ea[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x149379", + "lines": [ + "Xorg 0x149379[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1586a", + "lines": [ + "modesetting_drv.so 0x1586a[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x1655d", + "lines": [ + "modesetting_drv.so 0x1655d[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0xf07d", + "lines": [ + "drmHandleEvent[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "90656" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e688f", + "lines": [ + "Xorg 0x1e688f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e101e", + "lines": [ + "Xorg 0x1e101e[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x176e73", + "lines": [ + "XkbSendStateNotify[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1797fa", + "lines": [ + "Xorg 0x1797fa[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1bfab8", + "lines": [ + "mieqProcessDeviceEvent[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1bfcae", + "lines": [ + "mieqProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xa411f", + "lines": [ + "ProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627d5", + "lines": [ + "Xorg 0x627d5[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "58209" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1044b", + "lines": [ + "libglamoregl.so 0x1044b[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "671856" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e1673", + "lines": [ + "WriteToClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x6f1b1", + "lines": [ + "WriteEventsToClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x6f346", + "lines": [ + "TryClientEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x72c50", + "lines": [ + "Xorg 0x72c50[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x764d5", + "lines": [ + "DeliverRawEvent[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1796b1", + "lines": [ + "Xorg 0x1796b1[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1bfab8", + "lines": [ + "mieqProcessDeviceEvent[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1bfcae", + "lines": [ + "mieqProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xa411f", + "lines": [ + "ProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627d5", + "lines": [ + "Xorg 0x627d5[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "54924654" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa0146", + "lines": [ + "lll_mutex_lock_optimized[]@:0", + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1dfc43", + "lines": [ + "input_lock[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1bfc3b", + "lines": [ + "mieqProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xa411f", + "lines": [ + "ProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627d5", + "lines": [ + "Xorg 0x627d5[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "74519502" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa0146", + "lines": [ + "lll_mutex_lock_optimized[]@:0", + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1dfc43", + "lines": [ + "input_lock[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1bfc3b", + "lines": [ + "mieqProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xa411f", + "lines": [ + "ProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62996", + "lines": [ + "Xorg 0x62996[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "32336" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241f46", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123bdf7", + "lines": [ + "wait_for_completion[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12b259", + "lines": [ + "__flush_work.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12ba3d", + "lines": [ + "flush_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9f4fe", + "lines": [ + "drm_mode_rmfb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9f57f", + "lines": [ + "drm_mode_rmfb_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3798", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3ae3", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501d4f", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68fa", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xdfdc", + "lines": [ + "drmModeRmFB[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x16dfd", + "lines": [ + "modesetting_drv.so 0x16dfd[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x1655d", + "lines": [ + "modesetting_drv.so 0x1655d[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0xf10e", + "lines": [ + "drmHandleEvent[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "347686466" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa36c0", + "lines": [ + "__GI___pthread_self[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1dfc10", + "lines": [ + "in_input_thread[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e14a1", + "lines": [ + "WriteToClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x6f1b1", + "lines": [ + "WriteEventsToClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1462d8", + "lines": [ + "Xorg 0x1462d8[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1451ea", + "lines": [ + "Xorg 0x1451ea[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x149379", + "lines": [ + "Xorg 0x149379[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1487f9", + "lines": [ + "Xorg 0x1487f9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x145def", + "lines": [ + "Xorg 0x145def[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x147186", + "lines": [ + "Xorg 0x147186[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "453027082" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab7f6", + "lines": [ + "_int_malloc[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xad6e3", + "lines": [ + "__GI___libc_malloc[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x13f83c", + "lines": [ + "Xorg 0x13f83c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "27755" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3cc882", + "lines": [ + "iris_dri.so 0x3cc882[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x3cfc28", + "lines": [ + "iris_dri.so 0x3cfc28[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x3d168e", + "lines": [ + "iris_dri.so 0x3d168e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1ff6b", + "lines": [ + "libglamoregl.so 0x1ff6b[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x20055", + "lines": [ + "libglamoregl.so 0x20055[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1c937", + "lines": [ + "libglamoregl.so 0x1c937[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1c9dc", + "lines": [ + "libglamoregl.so 0x1c9dc[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1d2bc", + "lines": [ + "libglamoregl.so 0x1d2bc[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14c9cf", + "lines": [ + "Xorg 0x14c9cf[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x275a2", + "lines": [ + "libglamoregl.so 0x275a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "228153971" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76cf7", + "lines": [ + "EventToXI2[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x76390", + "lines": [ + "DeliverRawEvent[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x180a5a", + "lines": [ + "Xorg 0x180a5a[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1bfa9e", + "lines": [ + "mieqProcessDeviceEvent[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1bfcae", + "lines": [ + "mieqProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xa411f", + "lines": [ + "ProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627d5", + "lines": [ + "Xorg 0x627d5[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "41186295" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68ef12", + "lines": [ + "iris_dri.so 0x68ef12[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68cc5c", + "lines": [ + "iris_dri.so 0x68cc5c[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x311bd7", + "lines": [ + "iris_dri.so 0x311bd7[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x17ba6", + "lines": [ + "libglamoregl.so 0x17ba6[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x18bf8", + "lines": [ + "libglamoregl.so 0x18bf8[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14b73c", + "lines": [ + "Xorg 0x14b73c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "182886099" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x106a0", + "lines": [ + "libglamoregl.so 0x106a0[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "95368184" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61490", + "lines": [ + "pixman_region_translate[]@:0" + ], + "mapping": "0xa000-0x97000@0xa000 libpixman-1.so.0.42.2(b1e653ebb5cbc50f9319964fe51ecc3031878a9e)" + }, + { + "address": "0x13862c", + "lines": [ + "Xorg 0x13862c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13c2a4", + "lines": [ + "ValidatePicture[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x136911", + "lines": [ + "CompositeGlyphs[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "64777056" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7718d", + "lines": [ + "eb_select_engine[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77b34", + "lines": [ + "i915_gem_do_execbuffer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x78b59", + "lines": [ + "i915_gem_execbuffer2_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3798", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3ae3", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501d4f", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68fa", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1002d80", + "lines": [ + "iris_dri.so 0x1002d80[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x10059e9", + "lines": [ + "iris_dri.so 0x10059e9[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xff1f96", + "lines": [ + "iris_dri.so 0xff1f96[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x69309d", + "lines": [ + "iris_dri.so 0x69309d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16f156", + "lines": [ + "iris_dri.so 0x16f156[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xa65c", + "lines": [ + "libglamoregl.so 0xa65c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xd23a", + "lines": [ + "modesetting_drv.so 0xd23a[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x678cc", + "lines": [ + "BlockHandler[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1bf", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "105017787" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xf41d9", + "lines": [ + "iris_dri.so 0xf41d9[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfec82e", + "lines": [ + "iris_dri.so 0xfec82e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfec8b8", + "lines": [ + "iris_dri.so 0xfec8b8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xd1464c", + "lines": [ + "iris_dri.so 0xd1464c[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xd147f8", + "lines": [ + "iris_dri.so 0xd147f8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfee4a6", + "lines": [ + "iris_dri.so 0xfee4a6[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfffedb", + "lines": [ + "iris_dri.so 0xfffedb[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x19f3ec", + "lines": [ + "iris_dri.so 0x19f3ec[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16ff5e", + "lines": [ + "iris_dri.so 0x16ff5e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1716e4", + "lines": [ + "iris_dri.so 0x1716e4[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x173442", + "lines": [ + "iris_dri.so 0x173442[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149c67", + "lines": [ + "iris_dri.so 0x149c67[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x14c060", + "lines": [ + "iris_dri.so 0x14c060[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x26395", + "lines": [ + "libglamoregl.so 0x26395[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x26758", + "lines": [ + "libglamoregl.so 0x26758[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xae85", + "lines": [ + "glamor_create_pixmap[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x5d8ed", + "lines": [ + "Xorg 0x5d8ed[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "45121" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b32f", + "lines": [ + "libGL.so.1.7.0 0x4b32f[]@:0" + ], + "mapping": "0x43000-0x63000@0x43000 libGL.so.1.7.0(dacb4b5a2a6d50a8e4cda899116174bcec11d2c1)" + } + ], + "values": "23465553" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x164370", + "lines": [ + "iris_dri.so 0x164370[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x164908", + "lines": [ + "iris_dri.so 0x164908[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x165e09", + "lines": [ + "iris_dri.so 0x165e09[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1d328", + "lines": [ + "libglamoregl.so 0x1d328[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14c9cf", + "lines": [ + "Xorg 0x14c9cf[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x275a2", + "lines": [ + "libglamoregl.so 0x275a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "321298" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x318d36", + "lines": [ + "iris_dri.so 0x318d36[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1be5f", + "lines": [ + "libglamoregl.so 0x1be5f[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1c19c", + "lines": [ + "libglamoregl.so 0x1c19c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1cc89", + "lines": [ + "libglamoregl.so 0x1cc89[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xffd1", + "lines": [ + "libglamoregl.so 0xffd1[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "219146099" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e7fc0", + "lines": [ + "iris_dri.so 0x3e7fc0[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x3e84e2", + "lines": [ + "iris_dri.so 0x3e84e2[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x178e32", + "lines": [ + "iris_dri.so 0x178e32[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x311bb8", + "lines": [ + "iris_dri.so 0x311bb8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x17ba6", + "lines": [ + "libglamoregl.so 0x17ba6[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x18bf8", + "lines": [ + "libglamoregl.so 0x18bf8[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14b73c", + "lines": [ + "Xorg 0x14b73c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "7485" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12be3a", + "lines": [ + "__recvmsg_syscall[]@:0", + "__libc_recvmsg[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e83e0", + "lines": [ + "Xorg 0x1e83e0[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e08d7", + "lines": [ + "ReadRequestFromClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x629ba", + "lines": [ + "Xorg 0x629ba[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "658014977" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x78980", + "lines": [ + "FreeScratchGC[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x275aa", + "lines": [ + "libglamoregl.so 0x275aa[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "71135051" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x165d64", + "lines": [ + "iris_dri.so 0x165d64[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1d36d", + "lines": [ + "libglamoregl.so 0x1d36d[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14c9cf", + "lines": [ + "Xorg 0x14c9cf[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x275a2", + "lines": [ + "libglamoregl.so 0x275a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "507605269" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10490", + "lines": [ + "libglamoregl.so 0x10490[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "119880646" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x133626", + "lines": [ + "iris_dri.so 0x133626[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x2a6a20", + "lines": [ + "iris_dri.so 0x2a6a20[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x25d96", + "lines": [ + "libglamoregl.so 0x25d96[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x10bbe", + "lines": [ + "libglamoregl.so 0x10bbe[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "27927" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10453", + "lines": [ + "libglamoregl.so 0x10453[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "54477957" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45e2f2", + "lines": [ + "__kmalloc_node_track_caller[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed3196", + "lines": [ + "kmalloc_reserve[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed6329", + "lines": [ + "__alloc_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xedcf1f", + "lines": [ + "alloc_skb_with_frags[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xecd2a4", + "lines": [ + "sock_alloc_send_pskb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1080bf7", + "lines": [ + "unix_stream_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec52fd", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e00e8", + "lines": [ + "do_iter_readv_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1820", + "lines": [ + "vfs_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1ae7", + "lines": [ + "do_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1b7b", + "lines": [ + "__x64_sys_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70b6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e688f", + "lines": [ + "Xorg 0x1e688f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e101e", + "lines": [ + "Xorg 0x1e101e[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x6f1b1", + "lines": [ + "WriteEventsToClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x146464", + "lines": [ + "Xorg 0x146464[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x147650", + "lines": [ + "Xorg 0x147650[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x148e4b", + "lines": [ + "present_event_notify[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x15b81", + "lines": [ + "modesetting_drv.so 0x15b81[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x16df0", + "lines": [ + "modesetting_drv.so 0x16df0[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x1655d", + "lines": [ + "modesetting_drv.so 0x1655d[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0xf10e", + "lines": [ + "drmHandleEvent[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "33205622" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d66fe", + "lines": [ + "iris_dri.so 0x3d66fe[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x3ed4a9", + "lines": [ + "iris_dri.so 0x3ed4a9[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x178e32", + "lines": [ + "iris_dri.so 0x178e32[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x311bb8", + "lines": [ + "iris_dri.so 0x311bb8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1d1d5", + "lines": [ + "libglamoregl.so 0x1d1d5[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14c9cf", + "lines": [ + "Xorg 0x14c9cf[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x275a2", + "lines": [ + "libglamoregl.so 0x275a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "417592998" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e283f", + "lines": [ + "Xorg 0x1e283f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "35163607162" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10ec0", + "lines": [ + "libglapi.so.0.0.0 0x10ec0[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libglapi.so.0.0.0(1aaf86e7bbddbdb25ed8426b53d7db51030e5a7e)" + } + ], + "values": "413730898" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136413", + "lines": [ + "Xorg 0x136413[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13674b", + "lines": [ + "Xorg 0x13674b[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f6e2", + "lines": [ + "Xorg 0x13f6e2[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "44273819" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xdfdc", + "lines": [ + "drmModeRmFB[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x16dfd", + "lines": [ + "modesetting_drv.so 0x16dfd[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x1655d", + "lines": [ + "modesetting_drv.so 0x1655d[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0xf10e", + "lines": [ + "drmHandleEvent[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "430464429" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x608d0", + "lines": [ + "pixman_region_fini[]@:0" + ], + "mapping": "0xa000-0x97000@0xa000 libpixman-1.so.0.42.2(b1e653ebb5cbc50f9319964fe51ecc3031878a9e)" + }, + { + "address": "0x2748b", + "lines": [ + "libglamoregl.so 0x2748b[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "1042175" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45e2f2", + "lines": [ + "__kmalloc_node_track_caller[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed3196", + "lines": [ + "kmalloc_reserve[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed6329", + "lines": [ + "__alloc_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xedcf1f", + "lines": [ + "alloc_skb_with_frags[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xecd2a4", + "lines": [ + "sock_alloc_send_pskb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1080bf7", + "lines": [ + "unix_stream_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec52fd", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e00e8", + "lines": [ + "do_iter_readv_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1820", + "lines": [ + "vfs_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1ae7", + "lines": [ + "do_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1b7b", + "lines": [ + "__x64_sys_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70b6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e688f", + "lines": [ + "Xorg 0x1e688f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e101e", + "lines": [ + "Xorg 0x1e101e[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x71e3c", + "lines": [ + "ProcQueryPointer[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "6702869" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10507", + "lines": [ + "libglamoregl.so 0x10507[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "2449678" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d5446", + "lines": [ + "iris_dri.so 0x3d5446[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1fcf9", + "lines": [ + "libglamoregl.so 0x1fcf9[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1d3d0", + "lines": [ + "libglamoregl.so 0x1d3d0[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14c9cf", + "lines": [ + "Xorg 0x14c9cf[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x275a2", + "lines": [ + "libglamoregl.so 0x275a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "597119684" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1882a0", + "lines": [ + "__memcmp_avx2_movbe[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xff6d7e", + "lines": [ + "iris_dri.so 0xff6d7e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xffb637", + "lines": [ + "iris_dri.so 0xffb637[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f12e", + "lines": [ + "iris_dri.so 0x149f12e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68aa67", + "lines": [ + "iris_dri.so 0x68aa67[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x6930e3", + "lines": [ + "iris_dri.so 0x6930e3[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16f156", + "lines": [ + "iris_dri.so 0x16f156[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xa65c", + "lines": [ + "libglamoregl.so 0xa65c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xd23a", + "lines": [ + "modesetting_drv.so 0xd23a[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x678cc", + "lines": [ + "BlockHandler[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1bf", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "35374555" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1648c1", + "lines": [ + "iris_dri.so 0x1648c1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x165e09", + "lines": [ + "iris_dri.so 0x165e09[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x10bfd", + "lines": [ + "libglamoregl.so 0x10bfd[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "276131276" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xeceb", + "lines": [ + "libglapi.so.0.0.0 0xeceb[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libglapi.so.0.0.0(1aaf86e7bbddbdb25ed8426b53d7db51030e5a7e)" + } + ], + "values": "216627630" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d0959", + "lines": [ + "iris_dri.so 0x3d0959[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x315677", + "lines": [ + "iris_dri.so 0x315677[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x3b6e8d", + "lines": [ + "iris_dri.so 0x3b6e8d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1cc55", + "lines": [ + "libglamoregl.so 0x1cc55[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xffd1", + "lines": [ + "libglamoregl.so 0xffd1[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "483091038" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45ef65", + "lines": [ + "kmem_cache_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7bb89", + "lines": [ + "i915_gem_object_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f2fa", + "lines": [ + "__i915_gem_object_create_region[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f51d", + "lines": [ + "i915_gem_object_create_region[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x83a78", + "lines": [ + "i915_gem_object_create_stolen[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x135e18", + "lines": [ + "intel_dpt_create[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13d80d", + "lines": [ + "intel_framebuffer_init[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13dabe", + "lines": [ + "intel_framebuffer_create[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13dbb4", + "lines": [ + "intel_user_framebuffer_create[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9f056", + "lines": [ + "drm_internal_framebuffer_create[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9f19f", + "lines": [ + "drm_mode_addfb2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9f3bd", + "lines": [ + "drm_mode_addfb2_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3798", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3ae3", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501d4f", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68fa", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xdf5d", + "lines": [ + "drmModeAddFB2WithModifiers[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x11ff2", + "lines": [ + "modesetting_drv.so 0x11ff2[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x17093", + "lines": [ + "modesetting_drv.so 0x17093[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x15e72", + "lines": [ + "modesetting_drv.so 0x15e72[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x1482bc", + "lines": [ + "Xorg 0x1482bc[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1487f9", + "lines": [ + "Xorg 0x1487f9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x14738a", + "lines": [ + "Xorg 0x14738a[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "317321" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfd3f0", + "lines": [ + "Xorg 0xfd3f0[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x67a3c", + "lines": [ + "WakeupHandler[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db207", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "9904" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x693dc0", + "lines": [ + "iris_dri.so 0x693dc0[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x3e8d85", + "lines": [ + "iris_dri.so 0x3e8d85[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x178e32", + "lines": [ + "iris_dri.so 0x178e32[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x311bb8", + "lines": [ + "iris_dri.so 0x311bb8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1d1d5", + "lines": [ + "libglamoregl.so 0x1d1d5[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14c9cf", + "lines": [ + "Xorg 0x14c9cf[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x275a2", + "lines": [ + "libglamoregl.so 0x275a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "324139915" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xf41d9", + "lines": [ + "iris_dri.so 0xf41d9[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfc6fe", + "lines": [ + "iris_dri.so 0xfc6fe[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68ab94", + "lines": [ + "iris_dri.so 0x68ab94[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x6930e3", + "lines": [ + "iris_dri.so 0x6930e3[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16f156", + "lines": [ + "iris_dri.so 0x16f156[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xa65c", + "lines": [ + "libglamoregl.so 0xa65c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xd23a", + "lines": [ + "modesetting_drv.so 0xd23a[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x678cc", + "lines": [ + "BlockHandler[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1bf", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "7597921478" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1043c", + "lines": [ + "libglamoregl.so 0x1043c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "143316533" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xffb59e", + "lines": [ + "iris_dri.so 0xffb59e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f12e", + "lines": [ + "iris_dri.so 0x149f12e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68aa67", + "lines": [ + "iris_dri.so 0x68aa67[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x6930e3", + "lines": [ + "iris_dri.so 0x6930e3[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16f156", + "lines": [ + "iris_dri.so 0x16f156[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xa65c", + "lines": [ + "libglamoregl.so 0xa65c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xd23a", + "lines": [ + "modesetting_drv.so 0xd23a[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x678cc", + "lines": [ + "BlockHandler[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1bf", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "22093362" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xab2fd", + "lines": [ + "_int_free[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xadd9d", + "lines": [ + "__GI___libc_free[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xf10e", + "lines": [ + "drmHandleEvent[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "11636727" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e283f", + "lines": [ + "Xorg 0x1e283f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "171207853" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e688f", + "lines": [ + "Xorg 0x1e688f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e101e", + "lines": [ + "Xorg 0x1e101e[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x6f1b1", + "lines": [ + "WriteEventsToClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x146464", + "lines": [ + "Xorg 0x146464[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x147650", + "lines": [ + "Xorg 0x147650[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x148e4b", + "lines": [ + "present_event_notify[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x15b81", + "lines": [ + "modesetting_drv.so 0x15b81[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x16df0", + "lines": [ + "modesetting_drv.so 0x16df0[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x1655d", + "lines": [ + "modesetting_drv.so 0x1655d[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0xf10e", + "lines": [ + "drmHandleEvent[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "132778086" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xf41d9", + "lines": [ + "iris_dri.so 0xf41d9[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfc6fe", + "lines": [ + "iris_dri.so 0xfc6fe[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68ab94", + "lines": [ + "iris_dri.so 0x68ab94[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x694319", + "lines": [ + "iris_dri.so 0x694319[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x172990", + "lines": [ + "iris_dri.so 0x172990[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x144769", + "lines": [ + "iris_dri.so 0x144769[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x147c62", + "lines": [ + "iris_dri.so 0x147c62[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x14e468", + "lines": [ + "iris_dri.so 0x14e468[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1f2cf", + "lines": [ + "libglamoregl.so 0x1f2cf[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1f51e", + "lines": [ + "libglamoregl.so 0x1f51e[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x11664", + "lines": [ + "libglamoregl.so 0x11664[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14e720", + "lines": [ + "Xorg 0x14e720[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x5f0cd", + "lines": [ + "Xorg 0x5f0cd[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "27727503" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa0146", + "lines": [ + "lll_mutex_lock_optimized[]@:0", + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1dfc43", + "lines": [ + "input_lock[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1bfcd3", + "lines": [ + "mieqProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xa411f", + "lines": [ + "ProcessInputEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62996", + "lines": [ + "Xorg 0x62996[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "12772" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62ec6d", + "lines": [ + "iris_dri.so 0x62ec6d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16de45", + "lines": [ + "iris_dri.so 0x16de45[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x178e32", + "lines": [ + "iris_dri.so 0x178e32[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x311bb8", + "lines": [ + "iris_dri.so 0x311bb8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x17ba6", + "lines": [ + "libglamoregl.so 0x17ba6[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x18bf8", + "lines": [ + "libglamoregl.so 0x18bf8[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14b73c", + "lines": [ + "Xorg 0x14b73c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "123388030" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45e2f2", + "lines": [ + "__kmalloc_node_track_caller[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed3196", + "lines": [ + "kmalloc_reserve[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xed6329", + "lines": [ + "__alloc_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xedcf1f", + "lines": [ + "alloc_skb_with_frags[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xecd2a4", + "lines": [ + "sock_alloc_send_pskb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1080bf7", + "lines": [ + "unix_stream_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec52fd", + "lines": [ + "sock_write_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e00e8", + "lines": [ + "do_iter_readv_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1820", + "lines": [ + "vfs_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1ae7", + "lines": [ + "do_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e1b7b", + "lines": [ + "__x64_sys_writev[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70b6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e688f", + "lines": [ + "Xorg 0x1e688f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e101e", + "lines": [ + "Xorg 0x1e101e[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x6f1b1", + "lines": [ + "WriteEventsToClient[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1462d8", + "lines": [ + "Xorg 0x1462d8[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1451ea", + "lines": [ + "Xorg 0x1451ea[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x148ef1", + "lines": [ + "present_event_notify[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x15b81", + "lines": [ + "modesetting_drv.so 0x15b81[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x16df0", + "lines": [ + "modesetting_drv.so 0x16df0[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x1655d", + "lines": [ + "modesetting_drv.so 0x1655d[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0xf10e", + "lines": [ + "drmHandleEvent[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "152595297" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf45a", + "lines": [ + "libEGL_mesa.so.0.0.0 0xf45a[]@:0" + ], + "mapping": "0xa000-0x36000@0xa000 libEGL_mesa.so.0.0.0(37f4bd047014ecc808af94178745cf79c716dfd0)" + }, + { + "address": "0x1e365", + "lines": [ + "libEGL_mesa.so.0.0.0 0x1e365[]@:0" + ], + "mapping": "0xa000-0x36000@0xa000 libEGL_mesa.so.0.0.0(37f4bd047014ecc808af94178745cf79c716dfd0)" + }, + { + "address": "0x1e3da", + "lines": [ + "libEGL_mesa.so.0.0.0 0x1e3da[]@:0" + ], + "mapping": "0xa000-0x36000@0xa000 libEGL_mesa.so.0.0.0(37f4bd047014ecc808af94178745cf79c716dfd0)" + }, + { + "address": "0x4eb7", + "lines": [ + "libgbm.so.1.0.0 0x4eb7[]@:0" + ], + "mapping": "0x3000-0xb000@0x3000 libgbm.so.1.0.0(befdaa0b2329e19727ff21333552b600cf8a0e5c)" + }, + { + "address": "0x15a59", + "lines": [ + "modesetting_drv.so 0x15a59[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x15b2e", + "lines": [ + "modesetting_drv.so 0x15b2e[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x147bda", + "lines": [ + "Xorg 0x147bda[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x145450", + "lines": [ + "Xorg 0x145450[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x14576d", + "lines": [ + "Xorg 0x14576d[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x14871a", + "lines": [ + "Xorg 0x14871a[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x14738a", + "lines": [ + "Xorg 0x14738a[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "149024236" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12b103", + "lines": [ + "__flush_work.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12ba3d", + "lines": [ + "flush_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9f4fe", + "lines": [ + "drm_mode_rmfb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9f57f", + "lines": [ + "drm_mode_rmfb_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3798", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3ae3", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501d4f", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68fa", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xdfdc", + "lines": [ + "drmModeRmFB[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x16dfd", + "lines": [ + "modesetting_drv.so 0x16dfd[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x1655d", + "lines": [ + "modesetting_drv.so 0x1655d[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0xf10e", + "lines": [ + "drmHandleEvent[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "70214236" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6154", + "lines": [ + "__popcountdi2[]@:0" + ], + "mapping": "0x4000-0x28000@0x4000 libgcc_s.so.1(3072445288dd2aba348bf583c65f70509aab8141)" + }, + { + "address": "0xffb298", + "lines": [ + "iris_dri.so 0xffb298[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x107fe11", + "lines": [ + "iris_dri.so 0x107fe11[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1091273", + "lines": [ + "iris_dri.so 0x1091273[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f43d", + "lines": [ + "iris_dri.so 0x149f43d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68aa67", + "lines": [ + "iris_dri.so 0x68aa67[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x694319", + "lines": [ + "iris_dri.so 0x694319[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x172990", + "lines": [ + "iris_dri.so 0x172990[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x144769", + "lines": [ + "iris_dri.so 0x144769[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x147c62", + "lines": [ + "iris_dri.so 0x147c62[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x14e468", + "lines": [ + "iris_dri.so 0x14e468[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1f2cf", + "lines": [ + "libglamoregl.so 0x1f2cf[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1f51e", + "lines": [ + "libglamoregl.so 0x1f51e[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x11664", + "lines": [ + "libglamoregl.so 0x11664[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14e720", + "lines": [ + "Xorg 0x14e720[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x5f0cd", + "lines": [ + "Xorg 0x5f0cd[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "16038" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1885c0", + "lines": [ + "__memcmp_avx2_movbe[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xff6d7e", + "lines": [ + "iris_dri.so 0xff6d7e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xffbae7", + "lines": [ + "iris_dri.so 0xffbae7[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x149f12e", + "lines": [ + "iris_dri.so 0x149f12e[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x691126", + "lines": [ + "iris_dri.so 0x691126[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68a2fd", + "lines": [ + "iris_dri.so 0x68a2fd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68aa67", + "lines": [ + "iris_dri.so 0x68aa67[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x694319", + "lines": [ + "iris_dri.so 0x694319[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x172990", + "lines": [ + "iris_dri.so 0x172990[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x144769", + "lines": [ + "iris_dri.so 0x144769[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x147c62", + "lines": [ + "iris_dri.so 0x147c62[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x14e468", + "lines": [ + "iris_dri.so 0x14e468[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1f2cf", + "lines": [ + "libglamoregl.so 0x1f2cf[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1f51e", + "lines": [ + "libglamoregl.so 0x1f51e[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x11664", + "lines": [ + "libglamoregl.so 0x11664[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14e720", + "lines": [ + "Xorg 0x14e720[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x5f0cd", + "lines": [ + "Xorg 0x5f0cd[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "24700124" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136433", + "lines": [ + "Xorg 0x136433[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13674b", + "lines": [ + "Xorg 0x13674b[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f6e2", + "lines": [ + "Xorg 0x13f6e2[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "244038505" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45d66a", + "lines": [ + "__kmalloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcb4b9a", + "lines": [ + "drm_syncobj_array_find[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcb67d0", + "lines": [ + "drm_syncobj_wait_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3798", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3ae3", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501d4f", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68fa", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfec58f", + "lines": [ + "iris_dri.so 0xfec58f[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfec9f1", + "lines": [ + "iris_dri.so 0xfec9f1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfede81", + "lines": [ + "iris_dri.so 0xfede81[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfee153", + "lines": [ + "iris_dri.so 0xfee153[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfffedb", + "lines": [ + "iris_dri.so 0xfffedb[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1000797", + "lines": [ + "iris_dri.so 0x1000797[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xd229c2", + "lines": [ + "iris_dri.so 0xd229c2[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x172990", + "lines": [ + "iris_dri.so 0x172990[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x144769", + "lines": [ + "iris_dri.so 0x144769[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x147c62", + "lines": [ + "iris_dri.so 0x147c62[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x14e468", + "lines": [ + "iris_dri.so 0x14e468[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1f2cf", + "lines": [ + "libglamoregl.so 0x1f2cf[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1f51e", + "lines": [ + "libglamoregl.so 0x1f51e[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x11664", + "lines": [ + "libglamoregl.so 0x11664[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14e720", + "lines": [ + "Xorg 0x14e720[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x5f0cd", + "lines": [ + "Xorg 0x5f0cd[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "119786194" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1571f0", + "lines": [ + "iris_dri.so 0x1571f0[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x3c61a1", + "lines": [ + "iris_dri.so 0x3c61a1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x3c7a46", + "lines": [ + "iris_dri.so 0x3c7a46[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16818", + "lines": [ + "libglamoregl.so 0x16818[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x16bc2", + "lines": [ + "libglamoregl.so 0x16bc2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x173a2", + "lines": [ + "libglamoregl.so 0x173a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x18bf8", + "lines": [ + "libglamoregl.so 0x18bf8[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14b73c", + "lines": [ + "Xorg 0x14b73c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "4396632" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x318d7b", + "lines": [ + "iris_dri.so 0x318d7b[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1be5f", + "lines": [ + "libglamoregl.so 0x1be5f[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1c19c", + "lines": [ + "libglamoregl.so 0x1c19c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x1cc89", + "lines": [ + "libglamoregl.so 0x1cc89[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xffd1", + "lines": [ + "libglamoregl.so 0xffd1[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "13732542" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62d660", + "lines": [ + "iris_dri.so 0x62d660[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x3e6e22", + "lines": [ + "iris_dri.so 0x3e6e22[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x178e32", + "lines": [ + "iris_dri.so 0x178e32[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x311bb8", + "lines": [ + "iris_dri.so 0x311bb8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x100ef", + "lines": [ + "libglamoregl.so 0x100ef[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "8637505" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e8170", + "lines": [ + "iris_dri.so 0x3e8170[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x178e32", + "lines": [ + "iris_dri.so 0x178e32[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x311bb8", + "lines": [ + "iris_dri.so 0x311bb8[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x1d1d5", + "lines": [ + "libglamoregl.so 0x1d1d5[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14c9cf", + "lines": [ + "Xorg 0x14c9cf[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x275a2", + "lines": [ + "libglamoregl.so 0x275a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "154138271" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xf41d9", + "lines": [ + "iris_dri.so 0xf41d9[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xfc6fe", + "lines": [ + "iris_dri.so 0xfc6fe[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x68ab94", + "lines": [ + "iris_dri.so 0x68ab94[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x6930e3", + "lines": [ + "iris_dri.so 0x6930e3[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x16f156", + "lines": [ + "iris_dri.so 0x16f156[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xa65c", + "lines": [ + "libglamoregl.so 0xa65c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0xd23a", + "lines": [ + "modesetting_drv.so 0xd23a[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x678cc", + "lines": [ + "BlockHandler[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1db1bf", + "lines": [ + "WaitForSomething[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "141308" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfef04f", + "lines": [ + "iris_dri.so 0xfef04f[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x10016e6", + "lines": [ + "iris_dri.so 0x10016e6[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xb44c1", + "lines": [ + "iris_dri.so 0xb44c1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xb51cd", + "lines": [ + "iris_dri.so 0xb51cd[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x5070", + "lines": [ + "libgbm.so.1.0.0 0x5070[]@:0" + ], + "mapping": "0x3000-0xb000@0x3000 libgbm.so.1.0.0(befdaa0b2329e19727ff21333552b600cf8a0e5c)" + }, + { + "address": "0x1701a", + "lines": [ + "modesetting_drv.so 0x1701a[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x15e72", + "lines": [ + "modesetting_drv.so 0x15e72[]@:0" + ], + "mapping": "0x6000-0x18000@0x6000 modesetting_drv.so(94d376610512d9e97ca903e7eb7370777399d5e1)" + }, + { + "address": "0x1482bc", + "lines": [ + "Xorg 0x1482bc[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1487f9", + "lines": [ + "Xorg 0x1487f9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x14738a", + "lines": [ + "Xorg 0x14738a[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "3149599" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10515", + "lines": [ + "libglamoregl.so 0x10515[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "9880631" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf7e0", + "lines": [ + "libglapi.so.0.0.0 0xf7e0[]@:0" + ], + "mapping": "0xd000-0x1b000@0xd000 libglapi.so.0.0.0(1aaf86e7bbddbdb25ed8426b53d7db51030e5a7e)" + } + ], + "values": "43552854" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56051", + "lines": [ + "libpixman-1.so.0.42.2 0x56051[]@:0" + ], + "mapping": "0xa000-0x97000@0xa000 libpixman-1.so.0.42.2(b1e653ebb5cbc50f9319964fe51ecc3031878a9e)" + }, + { + "address": "0x56109", + "lines": [ + "libpixman-1.so.0.42.2 0x56109[]@:0" + ], + "mapping": "0xa000-0x97000@0xa000 libpixman-1.so.0.42.2(b1e653ebb5cbc50f9319964fe51ecc3031878a9e)" + }, + { + "address": "0x5a028", + "lines": [ + "libpixman-1.so.0.42.2 0x5a028[]@:0" + ], + "mapping": "0xa000-0x97000@0xa000 libpixman-1.so.0.42.2(b1e653ebb5cbc50f9319964fe51ecc3031878a9e)" + }, + { + "address": "0x26fd1", + "lines": [ + "libglamoregl.so 0x26fd1[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x27145", + "lines": [ + "libglamoregl.so 0x27145[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "9081772" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15290", + "lines": [ + "libglamoregl.so 0x15290[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x17315", + "lines": [ + "libglamoregl.so 0x17315[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x18bf8", + "lines": [ + "libglamoregl.so 0x18bf8[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(88b3a3aedfc6ce3999590188e8b56aca4660d3d5)" + }, + { + "address": "0x14b73c", + "lines": [ + "Xorg 0x14b73c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + } + ], + "values": "140300284" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123c760", + "lines": [ + "wait_for_completion_interruptible[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc4494", + "lines": [ + "drm_atomic_helper_swap_state[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10ffd8", + "lines": [ + "intel_atomic_commit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc80115", + "lines": [ + "drm_atomic_commit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc892b", + "lines": [ + "drm_atomic_helper_update_plane[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfb2f0", + "lines": [ + "intel_legacy_cursor_update[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcaf9a7", + "lines": [ + "__setplane_atomic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcafd0d", + "lines": [ + "drm_mode_cursor_universal[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcaff8f", + "lines": [ + "drm_mode_cursor_common[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcb0497", + "lines": [ + "drm_mode_cursor_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3798", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3ae3", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501d4f", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68fa", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xe439", + "lines": [ + "drmModeMoveCursor[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xdeeba", + "lines": [ + "Xorg 0xdeeba[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xea3e5", + "lines": [ + "Xorg 0xea3e5[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1c8fb1", + "lines": [ + "Xorg 0x1c8fb1[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1c9e9c", + "lines": [ + "miPointerSetPosition[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7aa5c", + "lines": [ + "Xorg 0x7aa5c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7afb4", + "lines": [ + "Xorg 0x7afb4[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7cb01", + "lines": [ + "GetPointerEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7d15c", + "lines": [ + "QueuePointerEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xf380", + "lines": [ + "libinput_drv.so 0xf380[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libinput_drv.so(a9e45dc645b1bb2f2aa711a0481b57e8244f4c8b)" + }, + { + "address": "0xfa77", + "lines": [ + "libinput_drv.so 0xfa77[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libinput_drv.so(a9e45dc645b1bb2f2aa711a0481b57e8244f4c8b)" + }, + { + "address": "0x1dff41", + "lines": [ + "Xorg 0x1dff41[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dfd58", + "lines": [ + "Xorg 0x1dfd58[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "525266221" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa0146", + "lines": [ + "lll_mutex_lock_optimized[]@:0", + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1dfc43", + "lines": [ + "input_lock[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dff2e", + "lines": [ + "Xorg 0x1dff2e[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dfd58", + "lines": [ + "Xorg 0x1dfd58[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10031894" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241f46", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123c87d", + "lines": [ + "wait_for_completion_interruptible[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc43f2", + "lines": [ + "drm_atomic_helper_swap_state[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10ffd8", + "lines": [ + "intel_atomic_commit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc80115", + "lines": [ + "drm_atomic_commit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc892b", + "lines": [ + "drm_atomic_helper_update_plane[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xfb2f0", + "lines": [ + "intel_legacy_cursor_update[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcaf9a7", + "lines": [ + "__setplane_atomic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcafd0d", + "lines": [ + "drm_mode_cursor_universal[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcaff8f", + "lines": [ + "drm_mode_cursor_common[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcb0497", + "lines": [ + "drm_mode_cursor_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3798", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca3ae3", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x501d4f", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68fa", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xe439", + "lines": [ + "drmModeMoveCursor[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xdeeba", + "lines": [ + "Xorg 0xdeeba[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xea3e5", + "lines": [ + "Xorg 0xea3e5[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1c8fb1", + "lines": [ + "Xorg 0x1c8fb1[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1c9e9c", + "lines": [ + "miPointerSetPosition[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7aa5c", + "lines": [ + "Xorg 0x7aa5c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7afb4", + "lines": [ + "Xorg 0x7afb4[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7cb01", + "lines": [ + "GetPointerEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7d15c", + "lines": [ + "QueuePointerEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xf380", + "lines": [ + "libinput_drv.so 0xf380[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libinput_drv.so(a9e45dc645b1bb2f2aa711a0481b57e8244f4c8b)" + }, + { + "address": "0xfa77", + "lines": [ + "libinput_drv.so 0xfa77[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libinput_drv.so(a9e45dc645b1bb2f2aa711a0481b57e8244f4c8b)" + }, + { + "address": "0x1dff41", + "lines": [ + "Xorg 0x1dff41[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dfd58", + "lines": [ + "Xorg 0x1dfd58[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1410900580" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e283f", + "lines": [ + "Xorg 0x1e283f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dfd58", + "lines": [ + "Xorg 0x1dfd58[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2207791870" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5fdf0", + "lines": [ + "pixman_f_transform_point[]@:0" + ], + "mapping": "0xa000-0x97000@0xa000 libpixman-1.so.0.42.2(b1e653ebb5cbc50f9319964fe51ecc3031878a9e)" + }, + { + "address": "0x7b2a4", + "lines": [ + "Xorg 0x7b2a4[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7cb01", + "lines": [ + "GetPointerEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7d15c", + "lines": [ + "QueuePointerEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xf380", + "lines": [ + "libinput_drv.so 0xf380[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libinput_drv.so(a9e45dc645b1bb2f2aa711a0481b57e8244f4c8b)" + }, + { + "address": "0xfa77", + "lines": [ + "libinput_drv.so 0xfa77[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libinput_drv.so(a9e45dc645b1bb2f2aa711a0481b57e8244f4c8b)" + }, + { + "address": "0x1dff41", + "lines": [ + "Xorg 0x1dff41[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dfd58", + "lines": [ + "Xorg 0x1dfd58[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1518874042" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x554c59", + "lines": [ + "__ep_eventpoll_poll.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x554df5", + "lines": [ + "ep_item_poll.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x554f97", + "lines": [ + "ep_send_events[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55526a", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e283f", + "lines": [ + "Xorg 0x1e283f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dfd58", + "lines": [ + "Xorg 0x1dfd58[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "220495497" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x238fd", + "lines": [ + "libinput.so.10.13.0 0x238fd[]@:0" + ], + "mapping": "0xa000-0x40000@0xa000 libinput.so.10.13.0(b6852a83eecc3abdfd0becd6cefbb57b83976773)" + }, + { + "address": "0x15b9d", + "lines": [ + "libinput.so.10.13.0 0x15b9d[]@:0" + ], + "mapping": "0xa000-0x40000@0xa000 libinput.so.10.13.0(b6852a83eecc3abdfd0becd6cefbb57b83976773)" + }, + { + "address": "0x11837", + "lines": [ + "libinput_dispatch[]@:0" + ], + "mapping": "0xa000-0x40000@0xa000 libinput.so.10.13.0(b6852a83eecc3abdfd0becd6cefbb57b83976773)" + }, + { + "address": "0xfa5c", + "lines": [ + "libinput_drv.so 0xfa5c[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libinput_drv.so(a9e45dc645b1bb2f2aa711a0481b57e8244f4c8b)" + }, + { + "address": "0x1dff41", + "lines": [ + "Xorg 0x1dff41[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dfd58", + "lines": [ + "Xorg 0x1dfd58[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10438953" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e283f", + "lines": [ + "Xorg 0x1e283f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dfd58", + "lines": [ + "Xorg 0x1dfd58[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "498620982" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xe439", + "lines": [ + "drmModeMoveCursor[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xdeeba", + "lines": [ + "Xorg 0xdeeba[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xea3e5", + "lines": [ + "Xorg 0xea3e5[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1c8fb1", + "lines": [ + "Xorg 0x1c8fb1[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1c9e9c", + "lines": [ + "miPointerSetPosition[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7aa5c", + "lines": [ + "Xorg 0x7aa5c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7afb4", + "lines": [ + "Xorg 0x7afb4[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7cb01", + "lines": [ + "GetPointerEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x7d15c", + "lines": [ + "QueuePointerEvents[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0xf380", + "lines": [ + "libinput_drv.so 0xf380[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libinput_drv.so(a9e45dc645b1bb2f2aa711a0481b57e8244f4c8b)" + }, + { + "address": "0xfa77", + "lines": [ + "libinput_drv.so 0xfa77[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libinput_drv.so(a9e45dc645b1bb2f2aa711a0481b57e8244f4c8b)" + }, + { + "address": "0x1dff41", + "lines": [ + "Xorg 0x1dff41[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1e2889", + "lines": [ + "Xorg 0x1e2889[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x1dfd58", + "lines": [ + "Xorg 0x1dfd58[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "53392" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11c5ac", + "lines": [ + "__GI___libc_write[]@:0", + "__GI___libc_write[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1dfdc1", + "lines": [ + "Xorg 0x1dfdc1[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(d24be32ee2cbc01f6455c8e4ef8a4eb09e85ff4e)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "443911943" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c065", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "382949168406" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b574", + "lines": [ + "schedule_preempt_disabled[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123de33", + "lines": [ + "__ww_mutex_lock.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123e2d5", + "lines": [ + "__ww_mutex_lock_slowpath[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123e385", + "lines": [ + "ww_mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcadcad", + "lines": [ + "drm_modeset_lock_all_ctx[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9e8b8", + "lines": [ + "atomic_remove_fb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9ec1d", + "lines": [ + "drm_framebuffer_remove[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc9ee4e", + "lines": [ + "drm_mode_rmfb_work_fn[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "562588" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aed8", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "3721917468" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1dd309", + "lines": [ + "rcu_gp_cleanup[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1de94e", + "lines": [ + "rcu_gp_kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "5007702" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1de631", + "lines": [ + "rcu_gp_fqs_loop[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1de93d", + "lines": [ + "rcu_gp_kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "211006798" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1de976", + "lines": [ + "rcu_gp_kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "3629216589" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1de05e", + "lines": [ + "force_qs_rnp[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1de5ae", + "lines": [ + "rcu_gp_fqs_loop[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1de93d", + "lines": [ + "rcu_gp_kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "153993931" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241e84", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1de3c4", + "lines": [ + "rcu_gp_fqs_loop[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1de93d", + "lines": [ + "rcu_gp_kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "54267866495" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241e84", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123a730", + "lines": [ + "io_schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9664d", + "lines": [ + "i915_request_wait_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96814", + "lines": [ + "i915_fence_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc193c3", + "lines": [ + "dma_fence_wait_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1074de", + "lines": [ + "intel_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x107e61", + "lines": [ + "intel_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "5575076378" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123bc44", + "lines": [ + "wait_for_completion_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc3d6c", + "lines": [ + "drm_atomic_helper_wait_for_flip_done[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x107932", + "lines": [ + "intel_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x107e61", + "lines": [ + "intel_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "17379548" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x167c52", + "lines": [ + "intel_psr_pre_plane_update[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x103e65", + "lines": [ + "intel_pre_plane_update[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x104607", + "lines": [ + "intel_pre_update_crtc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10fc0d", + "lines": [ + "skl_commit_modeset_enables[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1078fd", + "lines": [ + "intel_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x107e61", + "lines": [ + "intel_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "1601024658" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241e84", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123bc90", + "lines": [ + "wait_for_completion_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc3d6c", + "lines": [ + "drm_atomic_helper_wait_for_flip_done[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x107932", + "lines": [ + "intel_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x107e61", + "lines": [ + "intel_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "19491673351" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241da4", + "lines": [ + "usleep_range_state[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1584a", + "lines": [ + "__intel_wait_for_register[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1681af", + "lines": [ + "intel_psr_wait_for_idle_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8b4b", + "lines": [ + "intel_pipe_update_start[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10f3f1", + "lines": [ + "intel_update_crtc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10f920", + "lines": [ + "skl_commit_modeset_enables[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1078fd", + "lines": [ + "intel_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x107e61", + "lines": [ + "intel_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "817586978" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241e84", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40908b", + "lines": [ + "kcompactd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "39815875833" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x142e72", + "lines": [ + "smpboot_thread_fn[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "114587723818" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241e84", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123bc90", + "lines": [ + "wait_for_completion_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdf33b9", + "lines": [ + "i2c_dw_xfer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde8c06", + "lines": [ + "__i2c_transfer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde8ed6", + "lines": [ + "i2c_transfer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde8fa2", + "lines": [ + "i2c_transfer_buffer_flags[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16b", + "lines": [ + "i2c_hid_get_input[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x330", + "lines": [ + "i2c_hid_irq[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b9370", + "lines": [ + "irq_thread_fn[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b9d97", + "lines": [ + "irq_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "100043536" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b9d5e", + "lines": [ + "irq_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "41935932837" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8bbeb", + "lines": [ + "__i915_active_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9db7f", + "lines": [ + "release_references[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9fd03", + "lines": [ + "i915_vma_destroy_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x473eb", + "lines": [ + "clear_vm_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4756f", + "lines": [ + "__i915_vm_release[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "334840200" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x119394", + "lines": [ + "intel_display_power_put_async_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "517488204" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x150a0", + "lines": [ + "__intel_wait_for_register_fw[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61a35", + "lines": [ + "mmio_invalidate_full[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61bb3", + "lines": [ + "intel_gt_invalidate_tlb_full[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7d95e", + "lines": [ + "__i915_gem_object_unset_pages[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7d9c7", + "lines": [ + "__i915_gem_object_put_pages[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c0f8", + "lines": [ + "__i915_gem_object_pages_fini[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c323", + "lines": [ + "i915_gem_flush_free_objects[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c384", + "lines": [ + "__i915_gem_free_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "26166215776" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47563", + "lines": [ + "__i915_vm_release[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "348988029" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241e84", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22f4b", + "lines": [ + "iwl_trans_txq_send_hcmd_sync[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27367", + "lines": [ + "iwl_trans_txq_send_hcmd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22843", + "lines": [ + "iwl_trans_send_cmd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a197", + "lines": [ + "iwl_mvm_send_cmd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a2d8", + "lines": [ + "iwl_mvm_request_system_statistics[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ae17", + "lines": [ + "iwl_mvm_request_statistics[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bf7b", + "lines": [ + "iwl_mvm_recalc_tcm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bfc4", + "lines": [ + "iwl_mvm_tcm_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "303261" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241e84", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22f4b", + "lines": [ + "iwl_trans_txq_send_hcmd_sync[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27367", + "lines": [ + "iwl_trans_txq_send_hcmd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22843", + "lines": [ + "iwl_trans_send_cmd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a197", + "lines": [ + "iwl_mvm_send_cmd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39dbb", + "lines": [ + "iwl_mvm_config_scan[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bf9a", + "lines": [ + "iwl_mvm_recalc_tcm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1bfc4", + "lines": [ + "iwl_mvm_tcm_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "290283" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61b45", + "lines": [ + "intel_gt_invalidate_tlb_full[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7d95e", + "lines": [ + "__i915_gem_object_unset_pages[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7d9c7", + "lines": [ + "__i915_gem_object_put_pages[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c0f8", + "lines": [ + "__i915_gem_object_pages_fini[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c323", + "lines": [ + "i915_gem_flush_free_objects[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c384", + "lines": [ + "__i915_gem_free_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "82989209" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa145d", + "lines": [ + "i915_vma_resource_bind_dep_sync_all[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4758b", + "lines": [ + "__i915_vm_release[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "317758738" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b574", + "lines": [ + "schedule_preempt_disabled[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ecc3", + "lines": [ + "rwsem_down_read_slowpath[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ef67", + "lines": [ + "down_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41d03e", + "lines": [ + "unmap_mapping_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7b0e9", + "lines": [ + "i915_gem_object_release_mmap_offset[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c041", + "lines": [ + "__i915_gem_object_pages_fini[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c323", + "lines": [ + "i915_gem_flush_free_objects[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c384", + "lines": [ + "__i915_gem_free_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "2747" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b574", + "lines": [ + "schedule_preempt_disabled[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d28e", + "lines": [ + "__mutex_lock.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d6e2", + "lines": [ + "__mutex_lock_slowpath[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d73b", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1171b", + "lines": [ + "iwl_mvm_async_handlers_wk[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "79354" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f1bed", + "lines": [ + "mpage_prepare_extent_to_map[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f4b0c", + "lines": [ + "ext4_do_writepages[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f50e4", + "lines": [ + "ext4_writepages[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c86cc", + "lines": [ + "do_writepages[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52e243", + "lines": [ + "__writeback_single_inode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52e98a", + "lines": [ + "writeback_sb_inodes[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52ecf3", + "lines": [ + "__writeback_inodes_wb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52f057", + "lines": [ + "wb_writeback[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52f2d0", + "lines": [ + "wb_do_writeback[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5305fe", + "lines": [ + "wb_workfn[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "315277970" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123afd5", + "lines": [ + "io_schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123c900", + "lines": [ + "bit_wait_io[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b831", + "lines": [ + "__wait_on_bit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b99b", + "lines": [ + "out_of_line_wait_on_bit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x540a8f", + "lines": [ + "__wait_on_buffer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x654389", + "lines": [ + "jbd2_journal_commit_transaction[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65c43a", + "lines": [ + "kjournald2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "657153" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65c5fc", + "lines": [ + "kjournald2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "10120599810" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123afd5", + "lines": [ + "io_schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123c900", + "lines": [ + "bit_wait_io[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b831", + "lines": [ + "__wait_on_bit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b99b", + "lines": [ + "out_of_line_wait_on_bit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x540a8f", + "lines": [ + "__wait_on_buffer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x653eb2", + "lines": [ + "jbd2_journal_commit_transaction[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65c43a", + "lines": [ + "kjournald2[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "8058465" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c59", + "lines": [ + "dmcrypt_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "37720515824" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123afd5", + "lines": [ + "io_schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7e375e", + "lines": [ + "rq_qos_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x802112", + "lines": [ + "wbt_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7e3214", + "lines": [ + "__rq_qos_throttle[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c9d77", + "lines": [ + "blk_mq_submit_bio[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7b6f82", + "lines": [ + "__submit_bio[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7b76bb", + "lines": [ + "submit_bio_noacct_nocheck[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7b78e1", + "lines": [ + "submit_bio_noacct[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe33e38", + "lines": [ + "dm_submit_bio_remap[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d0a", + "lines": [ + "dmcrypt_write[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "10648628955" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241da4", + "lines": [ + "usleep_range_state[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96edc4", + "lines": [ + "pci_set_low_power_state[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96fbf0", + "lines": [ + "__pci_set_power_state[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x97131a", + "lines": [ + "pci_finish_runtime_suspend[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9749d5", + "lines": [ + "pci_pm_runtime_suspend[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbabfac", + "lines": [ + "__rpm_callback[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbac14c", + "lines": [ + "rpm_callback[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbab347", + "lines": [ + "rpm_suspend[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbabbcb", + "lines": [ + "rpm_idle[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbad8a2", + "lines": [ + "pm_runtime_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12aeab", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c195", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x136cae", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x680d3", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "11478282" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x29de1b8", + "lines": [ + "libxul.so 0x29de1b8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29dbfae", + "lines": [ + "libxul.so 0x29dbfae[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29dbde6", + "lines": [ + "libxul.so 0x29dbde6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "150649487781" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a22b57", + "lines": [ + "libxul.so 0x2a22b57[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a0be2e", + "lines": [ + "libxul.so 0x2a0be2e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29ea750", + "lines": [ + "libxul.so 0x29ea750[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29ee99c", + "lines": [ + "libxul.so 0x29ee99c[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29de68f", + "lines": [ + "libxul.so 0x29de68f[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29dbfae", + "lines": [ + "libxul.so 0x29dbfae[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29dbde6", + "lines": [ + "libxul.so 0x29dbde6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14056308540" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec962", + "lines": [ + "__GI___clock_gettime[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5a788", + "lines": [ + "g_get_monotonic_time[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5a844", + "lines": [ + "g_source_get_time[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x3eeac", + "lines": [ + "libgdk-3.so.0.2409.32 0x3eeac[]@:0" + ], + "mapping": "0x2a000-0xae000@0x2a000 libgdk-3.so.0.2409.32(5638978eaf26c38c9a3341d93fae1aa9d94de18a)" + }, + { + "address": "0x5e236", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5e236[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc626", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc626[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x2a5df47", + "lines": [ + "libxul.so 0x2a5df47[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afb3fe", + "lines": [ + "libxul.so 0x2afb3fe[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afaf19", + "lines": [ + "libxul.so 0x2afaf19[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff749", + "lines": [ + "libxul.so 0x2aff749[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x70bf6f0", + "lines": [ + "libxul.so 0x70bf6f0[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2d2b0c9", + "lines": [ + "libxul.so 0x2d2b0c9[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2997443", + "lines": [ + "libxul.so 0x2997443[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x299710c", + "lines": [ + "libxul.so 0x299710c[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x540f8", + "lines": [ + "firefox-bin 0x540f8[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa43d6", + "lines": [ + "firefox-bin 0xa43d6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + } + ], + "values": "2933797620" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2affcab", + "lines": [ + "libxul.so 0x2affcab[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x2a5df47", + "lines": [ + "libxul.so 0x2a5df47[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afb3fe", + "lines": [ + "libxul.so 0x2afb3fe[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afaf19", + "lines": [ + "libxul.so 0x2afaf19[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff749", + "lines": [ + "libxul.so 0x2aff749[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x70bf6f0", + "lines": [ + "libxul.so 0x70bf6f0[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2d2b0c9", + "lines": [ + "libxul.so 0x2d2b0c9[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2997443", + "lines": [ + "libxul.so 0x2997443[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x299710c", + "lines": [ + "libxul.so 0x299710c[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x540f8", + "lines": [ + "firefox-bin 0x540f8[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa43d6", + "lines": [ + "firefox-bin 0xa43d6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + } + ], + "values": "27046594036" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x178d", + "lines": [ + "XScreenSaverQueryInfo[]@:0" + ], + "mapping": "0x1000-0x2000@0x1000 libXss.so.1.0.0(56e74a2eed3b17fa7b1beefda957f984d7c436eb)" + }, + { + "address": "0x67da8f2", + "lines": [ + "libxul.so 0x67da8f2[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x674a0df", + "lines": [ + "libxul.so 0x674a0df[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x674b301", + "lines": [ + "libxul.so 0x674b301[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29bbd63", + "lines": [ + "libxul.so 0x29bbd63[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2b00304", + "lines": [ + "libxul.so 0x2b00304[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aa33b0", + "lines": [ + "libxul.so 0x2aa33b0[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5f085", + "lines": [ + "libxul.so 0x2a5f085[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afb3fe", + "lines": [ + "libxul.so 0x2afb3fe[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afaf19", + "lines": [ + "libxul.so 0x2afaf19[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff749", + "lines": [ + "libxul.so 0x2aff749[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x70bf6f0", + "lines": [ + "libxul.so 0x70bf6f0[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2d2b0c9", + "lines": [ + "libxul.so 0x2d2b0c9[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2997443", + "lines": [ + "libxul.so 0x2997443[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x299710c", + "lines": [ + "libxul.so 0x299710c[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x540f8", + "lines": [ + "firefox-bin 0x540f8[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa43d6", + "lines": [ + "firefox-bin 0xa43d6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + } + ], + "values": "444468" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa028f", + "lines": [ + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5de9c", + "lines": [ + "free[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x29ed50b", + "lines": [ + "libxul.so 0x29ed50b[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a02d42", + "lines": [ + "libxul.so 0x2a02d42[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a1637b", + "lines": [ + "libxul.so 0x2a1637b[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a09f9a", + "lines": [ + "libxul.so 0x2a09f9a[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3dfd060", + "lines": [ + "libxul.so 0x3dfd060[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3df4722", + "lines": [ + "libxul.so 0x3df4722[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3df45d5", + "lines": [ + "libxul.so 0x3df45d5[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3df4047", + "lines": [ + "libxul.so 0x3df4047[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3deda1b", + "lines": [ + "libxul.so 0x3deda1b[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2b00304", + "lines": [ + "libxul.so 0x2b00304[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5e5a4", + "lines": [ + "libxul.so 0x2a5e5a4[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afb213", + "lines": [ + "libxul.so 0x2afb213[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afaf19", + "lines": [ + "libxul.so 0x2afaf19[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff749", + "lines": [ + "libxul.so 0x2aff749[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x70bf6f0", + "lines": [ + "libxul.so 0x70bf6f0[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2d2b0c9", + "lines": [ + "libxul.so 0x2d2b0c9[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2997443", + "lines": [ + "libxul.so 0x2997443[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x299710c", + "lines": [ + "libxul.so 0x299710c[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x540f8", + "lines": [ + "firefox-bin 0x540f8[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa43d6", + "lines": [ + "firefox-bin 0xa43d6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + } + ], + "values": "5852" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241f46", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xee4128", + "lines": [ + "__skb_wait_for_more_packets[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10837c6", + "lines": [ + "__unix_dgram_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1083d82", + "lines": [ + "unix_seqpacket_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec48cd", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4aa2", + "lines": [ + "____sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec7d50", + "lines": [ + "___sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec8c71", + "lines": [ + "__sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec8cfc", + "lines": [ + "__x64_sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6fd5", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12be3a", + "lines": [ + "__recvmsg_syscall[]@:0", + "__libc_recvmsg[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x21ff0", + "lines": [ + "libmozsandbox.so 0x21ff0[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x174c3", + "lines": [ + "libmozsandbox.so 0x174c3[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x1b3ee", + "lines": [ + "libmozsandbox.so 0x1b3ee[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x1a15e", + "lines": [ + "libmozsandbox.so 0x1a15e[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0xe07a", + "lines": [ + "libmozsandbox.so 0xe07a[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x140ad", + "lines": [ + "libmozsandbox.so 0x140ad[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x4531f", + "lines": [ + "libc.so.6 0x4531f[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x11b1e5", + "lines": [ + "__libc_open64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91afe", + "lines": [ + "__GI__IO_file_open[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91e41", + "lines": [ + "_IO_new_file_fopen[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x85ed1", + "lines": [ + "__fopen_internal[]@:0", + "_IO_new_fopen[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xf906c", + "lines": [ + "std::__basic_file::open(char const*, std::_Ios_Openmode, int)[]@:0" + ], + "mapping": "0x9d000-0x1e5000@0x9d000 libstdc++.so.6.0.33(ca77dae775ec87540acd7218fa990c40d1c94ab1)" + }, + { + "address": "0x12ef2e", + "lines": [ + "std::basic_filebuf::open(char const*, std::_Ios_Openmode)[]@:0" + ], + "mapping": "0x9d000-0x1e5000@0x9d000 libstdc++.so.6.0.33(ca77dae775ec87540acd7218fa990c40d1c94ab1)" + }, + { + "address": "0x324649b", + "lines": [ + "libxul.so 0x324649b[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3246290", + "lines": [ + "libxul.so 0x3246290[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x322696b", + "lines": [ + "libxul.so 0x322696b[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2af6785", + "lines": [ + "libxul.so 0x2af6785[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d620", + "lines": [ + "libxul.so 0x2a5d620[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "74917" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241f46", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xee4128", + "lines": [ + "__skb_wait_for_more_packets[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10837c6", + "lines": [ + "__unix_dgram_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1083d82", + "lines": [ + "unix_seqpacket_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec48cd", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4aa2", + "lines": [ + "____sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec7d50", + "lines": [ + "___sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec8c71", + "lines": [ + "__sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec8cfc", + "lines": [ + "__x64_sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6fd5", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12be3a", + "lines": [ + "__recvmsg_syscall[]@:0", + "__libc_recvmsg[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x21ff0", + "lines": [ + "libmozsandbox.so 0x21ff0[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x174c3", + "lines": [ + "libmozsandbox.so 0x174c3[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x1b3ee", + "lines": [ + "libmozsandbox.so 0x1b3ee[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x1a15e", + "lines": [ + "libmozsandbox.so 0x1a15e[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0xe07a", + "lines": [ + "libmozsandbox.so 0xe07a[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x140ad", + "lines": [ + "libmozsandbox.so 0x140ad[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x4531f", + "lines": [ + "libc.so.6 0x4531f[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x11b1e5", + "lines": [ + "__libc_open64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91afe", + "lines": [ + "__GI__IO_file_open[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91e41", + "lines": [ + "_IO_new_file_fopen[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x85ed1", + "lines": [ + "__fopen_internal[]@:0", + "_IO_new_fopen[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x32268b2", + "lines": [ + "libxul.so 0x32268b2[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2af6785", + "lines": [ + "libxul.so 0x2af6785[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d620", + "lines": [ + "libxul.so 0x2a5d620[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "38722" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241f46", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xee4128", + "lines": [ + "__skb_wait_for_more_packets[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10837c6", + "lines": [ + "__unix_dgram_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1083d82", + "lines": [ + "unix_seqpacket_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec48cd", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4aa2", + "lines": [ + "____sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec7d50", + "lines": [ + "___sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec8c71", + "lines": [ + "__sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec8cfc", + "lines": [ + "__x64_sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6fd5", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12be3a", + "lines": [ + "__recvmsg_syscall[]@:0", + "__libc_recvmsg[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x21ff0", + "lines": [ + "libmozsandbox.so 0x21ff0[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x174c3", + "lines": [ + "libmozsandbox.so 0x174c3[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x1b3ee", + "lines": [ + "libmozsandbox.so 0x1b3ee[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x1a15e", + "lines": [ + "libmozsandbox.so 0x1a15e[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0xe07a", + "lines": [ + "libmozsandbox.so 0xe07a[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x140ad", + "lines": [ + "libmozsandbox.so 0x140ad[]@:0" + ], + "mapping": "0xb000-0x24000@0xa000 libmozsandbox.so(8e28c78516ec38412a1741e5da8a5b1f7bef9cfd)" + }, + { + "address": "0x4531f", + "lines": [ + "libc.so.6 0x4531f[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x11b1e5", + "lines": [ + "__libc_open64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91afe", + "lines": [ + "__GI__IO_file_open[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x91e41", + "lines": [ + "_IO_new_file_fopen[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x85ed1", + "lines": [ + "__fopen_internal[]@:0", + "_IO_new_fopen[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x3226832", + "lines": [ + "libxul.so 0x3226832[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2af6785", + "lines": [ + "libxul.so 0x2af6785[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d620", + "lines": [ + "libxul.so 0x2a5d620[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "47007" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1d002", + "lines": [ + "PR_WaitCondVar[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x2bbdd22", + "lines": [ + "libxul.so 0x2bbdd22[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "60003855832" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1d074", + "lines": [ + "PR_WaitCondVar[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x2bbde5b", + "lines": [ + "libxul.so 0x2bbde5b[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7044126203" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2bd55da", + "lines": [ + "libxul.so 0x2bd55da[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x751083d", + "lines": [ + "libxul.so 0x751083d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x751788d", + "lines": [ + "libxul.so 0x751788d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x7517176", + "lines": [ + "libxul.so 0x7517176[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c062a", + "lines": [ + "libxul.so 0x74c062a[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bd239", + "lines": [ + "libxul.so 0x74bd239[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bc0a6", + "lines": [ + "libxul.so 0x74bc0a6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x649122d", + "lines": [ + "libxul.so 0x649122d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490fbb", + "lines": [ + "libxul.so 0x6490fbb[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29bbd63", + "lines": [ + "libxul.so 0x29bbd63[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6488aca", + "lines": [ + "libxul.so 0x6488aca[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x648e881", + "lines": [ + "libxul.so 0x648e881[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490caf", + "lines": [ + "libxul.so 0x6490caf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6479499", + "lines": [ + "libxul.so 0x6479499[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "8654" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2bd55da", + "lines": [ + "libxul.so 0x2bd55da[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x7515c5f", + "lines": [ + "libxul.so 0x7515c5f[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x751788d", + "lines": [ + "libxul.so 0x751788d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x7517176", + "lines": [ + "libxul.so 0x7517176[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c062a", + "lines": [ + "libxul.so 0x74c062a[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bd239", + "lines": [ + "libxul.so 0x74bd239[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bc0a6", + "lines": [ + "libxul.so 0x74bc0a6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x649122d", + "lines": [ + "libxul.so 0x649122d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490fbb", + "lines": [ + "libxul.so 0x6490fbb[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29bbd63", + "lines": [ + "libxul.so 0x29bbd63[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6488aca", + "lines": [ + "libxul.so 0x6488aca[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x648e881", + "lines": [ + "libxul.so 0x648e881[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490caf", + "lines": [ + "libxul.so 0x6490caf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6479499", + "lines": [ + "libxul.so 0x6479499[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "24305" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2bd55da", + "lines": [ + "libxul.so 0x2bd55da[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c8af2", + "lines": [ + "libxul.so 0x74c8af2[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c2bc8", + "lines": [ + "libxul.so 0x74c2bc8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bd239", + "lines": [ + "libxul.so 0x74bd239[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bc0a6", + "lines": [ + "libxul.so 0x74bc0a6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6491181", + "lines": [ + "libxul.so 0x6491181[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490fbb", + "lines": [ + "libxul.so 0x6490fbb[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29bbd63", + "lines": [ + "libxul.so 0x29bbd63[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6488aca", + "lines": [ + "libxul.so 0x6488aca[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x648e881", + "lines": [ + "libxul.so 0x648e881[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490caf", + "lines": [ + "libxul.so 0x6490caf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6479499", + "lines": [ + "libxul.so 0x6479499[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5985" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2bd55da", + "lines": [ + "libxul.so 0x2bd55da[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c5243", + "lines": [ + "libxul.so 0x74c5243[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bd239", + "lines": [ + "libxul.so 0x74bd239[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bc0a6", + "lines": [ + "libxul.so 0x74bc0a6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6491181", + "lines": [ + "libxul.so 0x6491181[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490fbb", + "lines": [ + "libxul.so 0x6490fbb[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29bbd63", + "lines": [ + "libxul.so 0x29bbd63[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6488aca", + "lines": [ + "libxul.so 0x6488aca[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x648e881", + "lines": [ + "libxul.so 0x648e881[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490caf", + "lines": [ + "libxul.so 0x6490caf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6479499", + "lines": [ + "libxul.so 0x6479499[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "24642" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2bd55da", + "lines": [ + "libxul.so 0x2bd55da[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x751083d", + "lines": [ + "libxul.so 0x751083d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x751788d", + "lines": [ + "libxul.so 0x751788d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x7517176", + "lines": [ + "libxul.so 0x7517176[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c062a", + "lines": [ + "libxul.so 0x74c062a[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bd239", + "lines": [ + "libxul.so 0x74bd239[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bc0a6", + "lines": [ + "libxul.so 0x74bc0a6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6491181", + "lines": [ + "libxul.so 0x6491181[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490fbb", + "lines": [ + "libxul.so 0x6490fbb[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29bbd63", + "lines": [ + "libxul.so 0x29bbd63[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6488aca", + "lines": [ + "libxul.so 0x6488aca[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x648e881", + "lines": [ + "libxul.so 0x648e881[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490caf", + "lines": [ + "libxul.so 0x6490caf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6479499", + "lines": [ + "libxul.so 0x6479499[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "25185" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2bd55da", + "lines": [ + "libxul.so 0x2bd55da[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c5243", + "lines": [ + "libxul.so 0x74c5243[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bd239", + "lines": [ + "libxul.so 0x74bd239[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bc0a6", + "lines": [ + "libxul.so 0x74bc0a6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x649122d", + "lines": [ + "libxul.so 0x649122d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490fbb", + "lines": [ + "libxul.so 0x6490fbb[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29bbd63", + "lines": [ + "libxul.so 0x29bbd63[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6488aca", + "lines": [ + "libxul.so 0x6488aca[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x648e881", + "lines": [ + "libxul.so 0x648e881[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490caf", + "lines": [ + "libxul.so 0x6490caf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6479499", + "lines": [ + "libxul.so 0x6479499[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "19998" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2bd55da", + "lines": [ + "libxul.so 0x2bd55da[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c8af2", + "lines": [ + "libxul.so 0x74c8af2[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c2bd8", + "lines": [ + "libxul.so 0x74c2bd8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bd239", + "lines": [ + "libxul.so 0x74bd239[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bc0a6", + "lines": [ + "libxul.so 0x74bc0a6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6491181", + "lines": [ + "libxul.so 0x6491181[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490fbb", + "lines": [ + "libxul.so 0x6490fbb[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29bbd63", + "lines": [ + "libxul.so 0x29bbd63[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6488aca", + "lines": [ + "libxul.so 0x6488aca[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x648e881", + "lines": [ + "libxul.so 0x648e881[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490caf", + "lines": [ + "libxul.so 0x6490caf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6479499", + "lines": [ + "libxul.so 0x6479499[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "51800" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93165", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait(mozilla::detail::MutexImpl\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x6479428", + "lines": [ + "libxul.so 0x6479428[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "4570969615" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2bd55da", + "lines": [ + "libxul.so 0x2bd55da[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x7515c5f", + "lines": [ + "libxul.so 0x7515c5f[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x751788d", + "lines": [ + "libxul.so 0x751788d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x7517176", + "lines": [ + "libxul.so 0x7517176[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c062a", + "lines": [ + "libxul.so 0x74c062a[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bd239", + "lines": [ + "libxul.so 0x74bd239[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bc0a6", + "lines": [ + "libxul.so 0x74bc0a6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6491181", + "lines": [ + "libxul.so 0x6491181[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490fbb", + "lines": [ + "libxul.so 0x6490fbb[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29bbd63", + "lines": [ + "libxul.so 0x29bbd63[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6488aca", + "lines": [ + "libxul.so 0x6488aca[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x648e881", + "lines": [ + "libxul.so 0x648e881[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6490caf", + "lines": [ + "libxul.so 0x6490caf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6479499", + "lines": [ + "libxul.so 0x6479499[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "25592" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2affcab", + "lines": [ + "libxul.so 0x2affcab[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x2a5df47", + "lines": [ + "libxul.so 0x2a5df47[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afb3fe", + "lines": [ + "libxul.so 0x2afb3fe[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afaf19", + "lines": [ + "libxul.so 0x2afaf19[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff749", + "lines": [ + "libxul.so 0x2aff749[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff6b9", + "lines": [ + "libxul.so 0x2aff6b9[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29ce05f", + "lines": [ + "libxul.so 0x29ce05f[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x53ff6", + "lines": [ + "firefox-bin 0x53ff6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa43d6", + "lines": [ + "firefox-bin 0xa43d6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + } + ], + "values": "282158240162" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2affcab", + "lines": [ + "libxul.so 0x2affcab[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x2a5df47", + "lines": [ + "libxul.so 0x2a5df47[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afb3fe", + "lines": [ + "libxul.so 0x2afb3fe[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afaf19", + "lines": [ + "libxul.so 0x2afaf19[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff749", + "lines": [ + "libxul.so 0x2aff749[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff6b9", + "lines": [ + "libxul.so 0x2aff6b9[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29ce05f", + "lines": [ + "libxul.so 0x29ce05f[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x53ff6", + "lines": [ + "firefox-bin 0x53ff6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa43d6", + "lines": [ + "firefox-bin 0xa43d6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + } + ], + "values": "9037384941" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x3f06fbf", + "lines": [ + "libxul.so 0x3f06fbf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3f05ed1", + "lines": [ + "libxul.so 0x3f05ed1[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3f0d07e", + "lines": [ + "libxul.so 0x3f0d07e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x66db3d7", + "lines": [ + "libxul.so 0x66db3d7[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x66d13c0", + "lines": [ + "libxul.so 0x66d13c0[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x66d1066", + "lines": [ + "libxul.so 0x66d1066[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x66d2cab", + "lines": [ + "libxul.so 0x66d2cab[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x4fc9bce", + "lines": [ + "libxul.so 0x4fc9bce[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2fc3bc2", + "lines": [ + "libxul.so 0x2fc3bc2[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + } + ], + "values": "234892" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x132c25", + "lines": [ + "task_work_run[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b056", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122983a", + "lines": [ + "sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f4a", + "lines": [ + "asm_sysvec_apic_timer_interrupt[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6c0a9e1", + "lines": [ + "libxul.so 0x6c0a9e1[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6c14906", + "lines": [ + "libxul.so 0x6c14906[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x6c14104", + "lines": [ + "libxul.so 0x6c14104[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x4965776", + "lines": [ + "libxul.so 0x4965776[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5483287", + "lines": [ + "libxul.so 0x5483287[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + } + ], + "values": "4969433730" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93317", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x3f06fbf", + "lines": [ + "libxul.so 0x3f06fbf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3f05ed1", + "lines": [ + "libxul.so 0x3f05ed1[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3f0d07e", + "lines": [ + "libxul.so 0x3f0d07e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x66cfe4f", + "lines": [ + "libxul.so 0x66cfe4f[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x66cfb83", + "lines": [ + "libxul.so 0x66cfb83[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x66d2ddf", + "lines": [ + "libxul.so 0x66d2ddf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x4fc991e", + "lines": [ + "libxul.so 0x4fc991e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2fc3bc2", + "lines": [ + "libxul.so 0x2fc3bc2[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + } + ], + "values": "313353" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9e792", + "lines": [ + "__pthread_clockjoin_ex[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1a171", + "lines": [ + "PR_JoinThread[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x2b7ffa6", + "lines": [ + "libxul.so 0x2b7ffa6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2b00304", + "lines": [ + "libxul.so 0x2b00304[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aa33b0", + "lines": [ + "libxul.so 0x2aa33b0[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5f085", + "lines": [ + "libxul.so 0x2a5f085[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afb3fe", + "lines": [ + "libxul.so 0x2afb3fe[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afaf19", + "lines": [ + "libxul.so 0x2afaf19[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff749", + "lines": [ + "libxul.so 0x2aff749[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff6b9", + "lines": [ + "libxul.so 0x2aff6b9[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29ce05f", + "lines": [ + "libxul.so 0x29ce05f[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x53ff6", + "lines": [ + "firefox-bin 0x53ff6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa43d6", + "lines": [ + "firefox-bin 0xa43d6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + } + ], + "values": "11662538538" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47690", + "lines": [ + "moz_xmalloc[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x29da229", + "lines": [ + "libxul.so 0x29da229[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3a7b0d1", + "lines": [ + "libxul.so 0x3a7b0d1[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3a79d3e", + "lines": [ + "libxul.so 0x3a79d3e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x533192e", + "lines": [ + "libxul.so 0x533192e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2ff4e61", + "lines": [ + "libxul.so 0x2ff4e61[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + } + ], + "values": "9026089153" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49658b2", + "lines": [ + "libxul.so 0x49658b2[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x496558c", + "lines": [ + "libxul.so 0x496558c[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5483287", + "lines": [ + "libxul.so 0x5483287[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + } + ], + "values": "10004144966" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_timedwait64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93298", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait_for(mozilla::detail::MutexImpl\u0026, mozilla::BaseTimeDuration const\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2b07e36", + "lines": [ + "libxul.so 0x2b07e36[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d620", + "lines": [ + "libxul.so 0x2a5d620[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "175232358914" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa028f", + "lines": [ + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x42645", + "lines": [ + "mozilla::detail::MutexImpl::lock()[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x315fea8", + "lines": [ + "libxul.so 0x315fea8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x315f14e", + "lines": [ + "libxul.so 0x315f14e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5001377098" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa028f", + "lines": [ + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x42645", + "lines": [ + "mozilla::detail::MutexImpl::lock()[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x315f156", + "lines": [ + "libxul.so 0x315f156[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5076" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93165", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait(mozilla::detail::MutexImpl\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x315f3c3", + "lines": [ + "libxul.so 0x315f3c3[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "79555662754" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1b036", + "lines": [ + "PR_Poll[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x29b5724", + "lines": [ + "libxul.so 0x29b5724[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29b5049", + "lines": [ + "libxul.so 0x29b5049[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d620", + "lines": [ + "libxul.so 0x2a5d620[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "9423328071" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93165", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait(mozilla::detail::MutexImpl\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a5e345", + "lines": [ + "libxul.so 0x2a5e345[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "35638106956" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x29de1b8", + "lines": [ + "libxul.so 0x29de1b8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29dbfae", + "lines": [ + "libxul.so 0x29dbfae[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29dbde6", + "lines": [ + "libxul.so 0x29dbde6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5918312091" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "futex_wake[]@:0", + "___pthread_cond_signal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x92805", + "lines": [ + "mozilla::detail::ConditionVariableImpl::notify_one()[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a22e10", + "lines": [ + "libxul.so 0x2a22e10[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a0be2e", + "lines": [ + "libxul.so 0x2a0be2e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29ea750", + "lines": [ + "libxul.so 0x29ea750[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29ee99c", + "lines": [ + "libxul.so 0x29ee99c[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29de68f", + "lines": [ + "libxul.so 0x29de68f[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29dbfae", + "lines": [ + "libxul.so 0x29dbfae[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29dbde6", + "lines": [ + "libxul.so 0x29dbde6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "17460882" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x605b586", + "lines": [ + "libxul.so 0x605b586[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x605b4c5", + "lines": [ + "libxul.so 0x605b4c5[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x60ae240", + "lines": [ + "libxul.so 0x60ae240[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x60ae39d", + "lines": [ + "libxul.so 0x60ae39d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "8410281594" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x605b55e", + "lines": [ + "libxul.so 0x605b55e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x605b4c5", + "lines": [ + "libxul.so 0x605b4c5[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x60ae240", + "lines": [ + "libxul.so 0x60ae240[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x60ae39d", + "lines": [ + "libxul.so 0x60ae39d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15619115512" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x36114d2", + "lines": [ + "libxul.so 0x36114d2[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29afde0", + "lines": [ + "libxul.so 0x29afde0[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29af681", + "lines": [ + "libxul.so 0x29af681[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x362194a", + "lines": [ + "libxul.so 0x362194a[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2900998348" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29afa82", + "lines": [ + "libxul.so 0x29afa82[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29af681", + "lines": [ + "libxul.so 0x29af681[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x362194a", + "lines": [ + "libxul.so 0x362194a[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3496427902" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f02c82", + "lines": [ + "libxul.so 0x3f02c82[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3f2ee80", + "lines": [ + "libxul.so 0x3f2ee80[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3f24569", + "lines": [ + "libxul.so 0x3f24569[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afeb39", + "lines": [ + "libxul.so 0x2afeb39[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5f034", + "lines": [ + "libxul.so 0x2a5f034[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "53690" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9f4d9", + "lines": [ + "__pthread_mutex_cond_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b6c1", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93165", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait(mozilla::detail::MutexImpl\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a5e345", + "lines": [ + "libxul.so 0x2a5e345[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "10221798773" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa028f", + "lines": [ + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x47772", + "lines": [ + "moz_xmalloc[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x3cffa48", + "lines": [ + "libxul.so 0x3cffa48[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3cffef6", + "lines": [ + "libxul.so 0x3cffef6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3764" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5caa8", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5caa8[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x8bc81", + "lines": [ + "libglib-2.0.so.0.8000.0 0x8bc81[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7999920734" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93165", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait(mozilla::detail::MutexImpl\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x315f3c3", + "lines": [ + "libxul.so 0x315f3c3[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2897486558" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93165", + "lines": [ + "mozilla::detail::ConditionVariableImpl::wait(mozilla::detail::MutexImpl\u0026)[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a5e345", + "lines": [ + "libxul.so 0x2a5e345[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d700", + "lines": [ + "libxul.so 0x2a5d700[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "41318" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xba5e0", + "lines": [ + "iris_dri.so 0xba5e0[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x64dcf", + "lines": [ + "kwin_x11 0x64dcf[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x10f84", + "lines": [ + "KWin::GLTexture::bind()[]@:0" + ], + "mapping": "0xa000-0x1d000@0xa000 libkwinglutils.so.5.27.11(b79e87745522e8a9559a65a18dc70d96dafcb154)" + }, + { + "address": "0x27addc", + "lines": [ + "KWin::ItemRendererOpenGL::renderItem(KWin::Item*, int, QRegion const\u0026, KWin::WindowPaintData const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x200915", + "lines": [ + "KWin::EffectsHandlerImpl::drawWindow(KWin::EffectWindow*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x27f726", + "lines": [ + "KWin::WorkspaceScene::finalPaintWindow(KWin::EffectWindowImpl*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x20085a", + "lines": [ + "KWin::EffectsHandlerImpl::paintWindow(KWin::EffectWindow*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x20085a", + "lines": [ + "KWin::EffectsHandlerImpl::paintWindow(KWin::EffectWindow*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2844e0", + "lines": [ + "KWin::WorkspaceScene::paintWindow(KWin::WindowItem*, int, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2847bd", + "lines": [ + "KWin::WorkspaceScene::paintSimpleScreen(int, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2007a8", + "lines": [ + "KWin::EffectsHandlerImpl::paintScreen(int, QRegion const\u0026, KWin::ScreenPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2007a8", + "lines": [ + "KWin::EffectsHandlerImpl::paintScreen(int, QRegion const\u0026, KWin::ScreenPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2843f9", + "lines": [ + "KWin::WorkspaceScene::paint(KWin::RenderTarget*, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x275ea0", + "lines": [ + "KWin::SceneDelegate::paint(KWin::RenderTarget*, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1be5b7", + "lines": [ + "KWin::Compositor::paintPass(KWin::RenderLayer*, KWin::RenderTarget*, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c3052", + "lines": [ + "KWin::Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c33bc", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "50095437" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcaca", + "lines": [ + "libxcb.so.1.1.0 0xcaca[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcda6", + "lines": [ + "libxcb.so.1.1.0 0xcda6[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xddd7", + "lines": [ + "xcb_flush[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x538cb", + "lines": [ + "libGLX_mesa.so.0.0.0 0x538cb[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x44a54", + "lines": [ + "libGLX_mesa.so.0.0.0 0x44a54[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x33f02", + "lines": [ + "libGLX_mesa.so.0.0.0 0x33f02[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x62593", + "lines": [ + "kwin_x11 0x62593[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x1c2a3a", + "lines": [ + "KWin::Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c33bc", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "1201752" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2db95a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "51818594" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa00f0", + "lines": [ + "lll_mutex_lock_optimized[]@:0", + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8ec", + "lines": [ + "libxcb.so.1.1.0 0xc8ec[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcda6", + "lines": [ + "libxcb.so.1.1.0 0xcda6[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcf94", + "lines": [ + "libxcb.so.1.1.0 0xcf94[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xde6d", + "lines": [ + "xcb_wait_for_reply[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x558a1", + "lines": [ + "kwin_x11 0x558a1[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x55c58", + "lines": [ + "kwin_x11 0x55c58[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x55d80", + "lines": [ + "kwin_x11 0x55d80[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335253", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "6133" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcf72", + "lines": [ + "libxcb.so.1.1.0 0xcf72[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44944", + "lines": [ + "libGLX_mesa.so.0.0.0 0x44944[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x64dcf", + "lines": [ + "kwin_x11 0x64dcf[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x10f84", + "lines": [ + "KWin::GLTexture::bind()[]@:0" + ], + "mapping": "0xa000-0x1d000@0xa000 libkwinglutils.so.5.27.11(b79e87745522e8a9559a65a18dc70d96dafcb154)" + }, + { + "address": "0x27addc", + "lines": [ + "KWin::ItemRendererOpenGL::renderItem(KWin::Item*, int, QRegion const\u0026, KWin::WindowPaintData const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x200915", + "lines": [ + "KWin::EffectsHandlerImpl::drawWindow(KWin::EffectWindow*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x27f726", + "lines": [ + "KWin::WorkspaceScene::finalPaintWindow(KWin::EffectWindowImpl*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x20085a", + "lines": [ + "KWin::EffectsHandlerImpl::paintWindow(KWin::EffectWindow*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x20085a", + "lines": [ + "KWin::EffectsHandlerImpl::paintWindow(KWin::EffectWindow*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2844e0", + "lines": [ + "KWin::WorkspaceScene::paintWindow(KWin::WindowItem*, int, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2847bd", + "lines": [ + "KWin::WorkspaceScene::paintSimpleScreen(int, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2007a8", + "lines": [ + "KWin::EffectsHandlerImpl::paintScreen(int, QRegion const\u0026, KWin::ScreenPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2007a8", + "lines": [ + "KWin::EffectsHandlerImpl::paintScreen(int, QRegion const\u0026, KWin::ScreenPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2843f9", + "lines": [ + "KWin::WorkspaceScene::paint(KWin::RenderTarget*, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x275ea0", + "lines": [ + "KWin::SceneDelegate::paint(KWin::RenderTarget*, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1be5b7", + "lines": [ + "KWin::Compositor::paintPass(KWin::RenderLayer*, KWin::RenderTarget*, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c3052", + "lines": [ + "KWin::Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c33bc", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "801614515" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x985df", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x11b4df", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "344098301" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xde6d", + "lines": [ + "xcb_wait_for_reply[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x558a1", + "lines": [ + "kwin_x11 0x558a1[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x55c58", + "lines": [ + "kwin_x11 0x55c58[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x55d80", + "lines": [ + "kwin_x11 0x55d80[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335253", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "17088" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "30931620871" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68a984", + "lines": [ + "iris_dri.so 0x68a984[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x693242", + "lines": [ + "iris_dri.so 0x693242[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x18ae54", + "lines": [ + "iris_dri.so 0x18ae54[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0xbb26d", + "lines": [ + "iris_dri.so 0xbb26d[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 iris_dri.so(c8d5f77d3463c08ca05e78e1e4ab4eb4132711f5)" + }, + { + "address": "0x53761", + "lines": [ + "libGLX_mesa.so.0.0.0 0x53761[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x44a54", + "lines": [ + "libGLX_mesa.so.0.0.0 0x44a54[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x33f02", + "lines": [ + "libGLX_mesa.so.0.0.0 0x33f02[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x62593", + "lines": [ + "kwin_x11 0x62593[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x1c2a3a", + "lines": [ + "KWin::Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c33bc", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "64815769" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcf72", + "lines": [ + "libxcb.so.1.1.0 0xcf72[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x44944", + "lines": [ + "libGLX_mesa.so.0.0.0 0x44944[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x64dcf", + "lines": [ + "kwin_x11 0x64dcf[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x10f84", + "lines": [ + "KWin::GLTexture::bind()[]@:0" + ], + "mapping": "0xa000-0x1d000@0xa000 libkwinglutils.so.5.27.11(b79e87745522e8a9559a65a18dc70d96dafcb154)" + }, + { + "address": "0x27addc", + "lines": [ + "KWin::ItemRendererOpenGL::renderItem(KWin::Item*, int, QRegion const\u0026, KWin::WindowPaintData const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x200915", + "lines": [ + "KWin::EffectsHandlerImpl::drawWindow(KWin::EffectWindow*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x27f726", + "lines": [ + "KWin::WorkspaceScene::finalPaintWindow(KWin::EffectWindowImpl*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x20085a", + "lines": [ + "KWin::EffectsHandlerImpl::paintWindow(KWin::EffectWindow*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x20085a", + "lines": [ + "KWin::EffectsHandlerImpl::paintWindow(KWin::EffectWindow*, int, QRegion const\u0026, KWin::WindowPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2844e0", + "lines": [ + "KWin::WorkspaceScene::paintWindow(KWin::WindowItem*, int, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2847bd", + "lines": [ + "KWin::WorkspaceScene::paintSimpleScreen(int, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2007a8", + "lines": [ + "KWin::EffectsHandlerImpl::paintScreen(int, QRegion const\u0026, KWin::ScreenPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2007a8", + "lines": [ + "KWin::EffectsHandlerImpl::paintScreen(int, QRegion const\u0026, KWin::ScreenPaintData\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x2843f9", + "lines": [ + "KWin::WorkspaceScene::paint(KWin::RenderTarget*, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x275ea0", + "lines": [ + "KWin::SceneDelegate::paint(KWin::RenderTarget*, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1be5b7", + "lines": [ + "KWin::Compositor::paintPass(KWin::RenderLayer*, KWin::RenderTarget*, QRegion const\u0026)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c3052", + "lines": [ + "KWin::Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c33bc", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334f10", + "lines": [ + "libQt5Core.so.5.15.13 0x334f10[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "61615" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a74e", + "lines": [ + "libkwineffects.so.5.27.11 0x1a74e[]@:0" + ], + "mapping": "0x18000-0x3f000@0x18000 libkwineffects.so.5.27.11(f3a9256d806b7a164b42a431a229afcc3f681680)" + }, + { + "address": "0x1fd85f", + "lines": [ + "KWin::EffectsHandlerImpl::startPaint()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x286b2b", + "lines": [ + "KWin::WorkspaceScene::prePaint(KWin::SceneDelegate*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1be426", + "lines": [ + "KWin::Compositor::prePaintPass(KWin::RenderLayer*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c2873", + "lines": [ + "KWin::Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c33bc", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "1083914610" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcf72", + "lines": [ + "libxcb.so.1.1.0 0xcf72[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xde6d", + "lines": [ + "xcb_wait_for_reply[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x27f054", + "lines": [ + "KWin::SurfaceItemX11::waitForDamage()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c338b", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "5904889506" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xad7b4", + "lines": [ + "tcache_get_n[]@:0", + "tcache_get[]@:0", + "__GI___libc_malloc[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbb903", + "lines": [ + "operator new(unsigned long)[]@:0" + ], + "mapping": "0x9d000-0x1e5000@0x9d000 libstdc++.so.6.0.33(ca77dae775ec87540acd7218fa990c40d1c94ab1)" + }, + { + "address": "0x49030c", + "lines": [ + "QRegion::QRegion(QRect const\u0026, QRegion::RegionType)[]@:0" + ], + "mapping": "0xe2000-0x5f7000@0xe2000 libQt5Gui.so.5.15.13(c6cdbf039da13141bbafbf2570e6cd4e97997262)" + }, + { + "address": "0x605bb", + "lines": [ + "kwin_x11 0x605bb[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x1c2a01", + "lines": [ + "KWin::Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c33bc", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "333124629" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67eb0", + "lines": [ + "breeze.so 0x67eb0[]@:0" + ], + "mapping": "0x19000-0x6f000@0x19000 breeze.so(3929cf61639fc9a3effefc323a3636377713ac95)" + }, + { + "address": "0x2d7d5d", + "lines": [ + "QCoreApplicationPrivate::sendThroughApplicationEventFilters(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd7f", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "34319449" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "2973574589" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xe753", + "lines": [ + "xcb_wait_for_special_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x51de0", + "lines": [ + "libGLX_mesa.so.0.0.0 0x51de0[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x51fe1", + "lines": [ + "libGLX_mesa.so.0.0.0 0x51fe1[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x52e1a", + "lines": [ + "libGLX_mesa.so.0.0.0 0x52e1a[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x53db0", + "lines": [ + "libGLX_mesa.so.0.0.0 0x53db0[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x3871c", + "lines": [ + "libGLX_mesa.so.0.0.0 0x3871c[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x626df", + "lines": [ + "kwin_x11 0x626df[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x1c2a3a", + "lines": [ + "KWin::Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c33bc", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "1519708896" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcf72", + "lines": [ + "libxcb.so.1.1.0 0xcf72[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xde6d", + "lines": [ + "xcb_wait_for_reply[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x27f054", + "lines": [ + "KWin::SurfaceItemX11::waitForDamage()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c338b", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "13784250" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43910", + "lines": [ + "kwin_x11 0x43910[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x17f4b3", + "lines": [ + "KWin::VsyncMonitor::vblankOccurred(std::chrono::duration)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "614709" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcf72", + "lines": [ + "libxcb.so.1.1.0 0xcf72[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xde6d", + "lines": [ + "xcb_wait_for_reply[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x558a1", + "lines": [ + "kwin_x11 0x558a1[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x55c58", + "lines": [ + "kwin_x11 0x55c58[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x55d80", + "lines": [ + "kwin_x11 0x55d80[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335253", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "798173969" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcf72", + "lines": [ + "libxcb.so.1.1.0 0xcf72[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xde6d", + "lines": [ + "xcb_wait_for_reply[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x27f054", + "lines": [ + "KWin::SurfaceItemX11::waitForDamage()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c338b", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334f10", + "lines": [ + "libQt5Core.so.5.15.13 0x334f10[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "106508" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12989a", + "lines": [ + "__GI___writev[]@:0", + "__GI___writev[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcaca", + "lines": [ + "libxcb.so.1.1.0 0xcaca[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcc4e", + "lines": [ + "libxcb.so.1.1.0 0xcc4e[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xcda6", + "lines": [ + "libxcb.so.1.1.0 0xcda6[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xddd7", + "lines": [ + "xcb_flush[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x1c3352", + "lines": [ + "KWin::X11Compositor::composite(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "KWin::RenderLoop::frameRequested(KWin::RenderLoop*)[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "KWin::RenderLoopPrivate::dispatch()[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "QTimer::timeout(QTimer::QPrivateSignal)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "1386826537" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x312699", + "lines": [ + "libQt5Core.so.5.15.13 0x312699[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x68d04", + "lines": [ + "kwin_x11 0x68d04[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "565694630" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "9085212436" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe6db", + "lines": [ + "xcb_wait_for_special_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x51de0", + "lines": [ + "libGLX_mesa.so.0.0.0 0x51de0[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x5335a", + "lines": [ + "libGLX_mesa.so.0.0.0 0x5335a[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x449f7", + "lines": [ + "libGLX_mesa.so.0.0.0 0x449f7[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x34568", + "lines": [ + "libGLX_mesa.so.0.0.0 0x34568[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x68cd3", + "lines": [ + "kwin_x11 0x68cd3[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "22686120384" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe6db", + "lines": [ + "xcb_wait_for_special_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x51de0", + "lines": [ + "libGLX_mesa.so.0.0.0 0x51de0[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x5335a", + "lines": [ + "libGLX_mesa.so.0.0.0 0x5335a[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x44a22", + "lines": [ + "libGLX_mesa.so.0.0.0 0x44a22[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x34450", + "lines": [ + "libGLX_mesa.so.0.0.0 0x34450[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x68cb9", + "lines": [ + "kwin_x11 0x68cb9[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "12924372401" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x985d9", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x11b4df", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe6db", + "lines": [ + "xcb_wait_for_special_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x51de0", + "lines": [ + "libGLX_mesa.so.0.0.0 0x51de0[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x5335a", + "lines": [ + "libGLX_mesa.so.0.0.0 0x5335a[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x449f7", + "lines": [ + "libGLX_mesa.so.0.0.0 0x449f7[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x34568", + "lines": [ + "libGLX_mesa.so.0.0.0 0x34568[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x68cd3", + "lines": [ + "kwin_x11 0x68cd3[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "416777760" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68cd4", + "lines": [ + "kwin_x11 0x68cd4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "415130403" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe6db", + "lines": [ + "xcb_wait_for_special_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x51de0", + "lines": [ + "libGLX_mesa.so.0.0.0 0x51de0[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x5335a", + "lines": [ + "libGLX_mesa.so.0.0.0 0x5335a[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x449f7", + "lines": [ + "libGLX_mesa.so.0.0.0 0x449f7[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x34568", + "lines": [ + "libGLX_mesa.so.0.0.0 0x34568[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x68cd3", + "lines": [ + "kwin_x11 0x68cd3[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "3061444416" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe6db", + "lines": [ + "xcb_wait_for_special_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x51de0", + "lines": [ + "libGLX_mesa.so.0.0.0 0x51de0[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x5335a", + "lines": [ + "libGLX_mesa.so.0.0.0 0x5335a[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x44a22", + "lines": [ + "libGLX_mesa.so.0.0.0 0x44a22[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x34450", + "lines": [ + "libGLX_mesa.so.0.0.0 0x34450[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x68cb9", + "lines": [ + "kwin_x11 0x68cb9[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "690083311" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12be3a", + "lines": [ + "__recvmsg_syscall[]@:0", + "__libc_recvmsg[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbf19", + "lines": [ + "libxcb.so.1.1.0 0xbf19[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xca95", + "lines": [ + "libxcb.so.1.1.0 0xca95[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe6db", + "lines": [ + "xcb_wait_for_special_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x51de0", + "lines": [ + "libGLX_mesa.so.0.0.0 0x51de0[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x5335a", + "lines": [ + "libGLX_mesa.so.0.0.0 0x5335a[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x449f7", + "lines": [ + "libGLX_mesa.so.0.0.0 0x449f7[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x34568", + "lines": [ + "libGLX_mesa.so.0.0.0 0x34568[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x68cd3", + "lines": [ + "kwin_x11 0x68cd3[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "14350" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x589bd", + "lines": [ + "libGLX_mesa.so.0.0.0 0x589bd[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x51dfe", + "lines": [ + "libGLX_mesa.so.0.0.0 0x51dfe[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x5335a", + "lines": [ + "libGLX_mesa.so.0.0.0 0x5335a[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x449f7", + "lines": [ + "libGLX_mesa.so.0.0.0 0x449f7[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x34568", + "lines": [ + "libGLX_mesa.so.0.0.0 0x34568[]@:0" + ], + "mapping": "0x19000-0x59000@0x19000 libGLX_mesa.so.0.0.0(9a5b0c88368fa4cf07fa362faf4ea748df82bab5)" + }, + { + "address": "0x68cd3", + "lines": [ + "kwin_x11 0x68cd3[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x306342", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2db94a", + "lines": [ + "QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x335c0e", + "lines": [ + "libQt5Core.so.5.15.13 0x335c0e[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xda36a", + "lines": [ + "QThread::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "1166231319" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11c5ac", + "lines": [ + "__GI___libc_write[]@:0", + "__GI___libc_write[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xab84a", + "lines": [ + "libglib-2.0.so.0.8000.0 0xab84a[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x74b52", + "lines": [ + "libQt5XcbQpa.so.5.15.13 0x74b52[]@:0" + ], + "mapping": "0x39000-0x110000@0x39000 libQt5XcbQpa.so.5.15.13(03a19e023af57550dcee7c99d4bb9691529eeb20)" + }, + { + "address": "0x74c38", + "lines": [ + "libQt5XcbQpa.so.5.15.13 0x74c38[]@:0" + ], + "mapping": "0x39000-0x110000@0x39000 libQt5XcbQpa.so.5.15.13(03a19e023af57550dcee7c99d4bb9691529eeb20)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "84070348" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe28b", + "lines": [ + "xcb_wait_for_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x74b9f", + "lines": [ + "libQt5XcbQpa.so.5.15.13 0x74b9f[]@:0" + ], + "mapping": "0x39000-0x110000@0x39000 libQt5XcbQpa.so.5.15.13(03a19e023af57550dcee7c99d4bb9691529eeb20)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "67702075925" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d711", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1081825", + "lines": [ + "unix_stream_read_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x108235c", + "lines": [ + "unix_stream_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec48cd", + "lines": [ + "sock_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec4aa2", + "lines": [ + "____sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec7d50", + "lines": [ + "___sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec8c71", + "lines": [ + "__sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec8cfc", + "lines": [ + "__x64_sys_recvmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6fd5", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12be3a", + "lines": [ + "__recvmsg_syscall[]@:0", + "__libc_recvmsg[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbf19", + "lines": [ + "libxcb.so.1.1.0 0xbf19[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xca95", + "lines": [ + "libxcb.so.1.1.0 0xca95[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe28b", + "lines": [ + "xcb_wait_for_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x74b9f", + "lines": [ + "libQt5XcbQpa.so.5.15.13 0x74b9f[]@:0" + ], + "mapping": "0x39000-0x110000@0x39000 libQt5XcbQpa.so.5.15.13(03a19e023af57550dcee7c99d4bb9691529eeb20)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "63042306" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xe2bb", + "lines": [ + "xcb_wait_for_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x74b9f", + "lines": [ + "libQt5XcbQpa.so.5.15.13 0x74b9f[]@:0" + ], + "mapping": "0x39000-0x110000@0x39000 libQt5XcbQpa.so.5.15.13(03a19e023af57550dcee7c99d4bb9691529eeb20)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "43389" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe28b", + "lines": [ + "xcb_wait_for_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x74b9f", + "lines": [ + "libQt5XcbQpa.so.5.15.13 0x74b9f[]@:0" + ], + "mapping": "0x39000-0x110000@0x39000 libQt5XcbQpa.so.5.15.13(03a19e023af57550dcee7c99d4bb9691529eeb20)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "4120657376" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x985c0", + "lines": [ + "__GI___pthread_disable_asynccancel[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x11b4df", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe28b", + "lines": [ + "xcb_wait_for_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x74b9f", + "lines": [ + "libQt5XcbQpa.so.5.15.13 0x74b9f[]@:0" + ], + "mapping": "0x39000-0x110000@0x39000 libQt5XcbQpa.so.5.15.13(03a19e023af57550dcee7c99d4bb9691529eeb20)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "65739352" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbe0b7a", + "lines": [ + "warp 0xbe0b7a[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0xbe3722", + "lines": [ + "warp 0xbe3722[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x6b05f6", + "lines": [ + "warp 0x6b05f6[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x23d5d04", + "lines": [ + "warp 0x23d5d04[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x23d33b6", + "lines": [ + "warp 0x23d33b6[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x327ae4a", + "lines": [ + "warp 0x327ae4a[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x3278807", + "lines": [ + "warp 0x3278807[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x10f16b2", + "lines": [ + "warp 0x10f16b2[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x10f16cc", + "lines": [ + "warp 0x10f16cc[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x11159d4", + "lines": [ + "warp 0x11159d4[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x10f1f6b", + "lines": [ + "warp 0x10f1f6b[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4814fd", + "lines": [ + "warp 0x4814fd[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + } + ], + "values": "7280045875" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31bd490", + "lines": [ + "warp 0x31bd490[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x23d49aa", + "lines": [ + "warp 0x23d49aa[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x327ae4a", + "lines": [ + "warp 0x327ae4a[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x3278807", + "lines": [ + "warp 0x3278807[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x10f16b2", + "lines": [ + "warp 0x10f16b2[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x10f16cc", + "lines": [ + "warp 0x10f16cc[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x11159d4", + "lines": [ + "warp 0x11159d4[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x10f1f6b", + "lines": [ + "warp 0x10f1f6b[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4814fd", + "lines": [ + "warp 0x4814fd[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + } + ], + "values": "65526" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbe4cd0", + "lines": [ + "warp 0xbe4cd0[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0xbe5cea", + "lines": [ + "warp 0xbe5cea[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x64301d", + "lines": [ + "warp 0x64301d[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x35ccc06", + "lines": [ + "warp 0x35ccc06[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x3579892", + "lines": [ + "warp 0x3579892[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x37d8765", + "lines": [ + "warp 0x37d8765[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x112b1fa", + "lines": [ + "warp 0x112b1fa[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "15479823702" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbcc514", + "lines": [ + "warp 0xbcc514[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x35cd15f", + "lines": [ + "warp 0x35cd15f[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x3579892", + "lines": [ + "warp 0x3579892[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x37d8765", + "lines": [ + "warp 0x37d8765[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x112b1fa", + "lines": [ + "warp 0x112b1fa[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "13591" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbcc514", + "lines": [ + "warp 0xbcc514[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x35cca62", + "lines": [ + "warp 0x35cca62[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x3579892", + "lines": [ + "warp 0x3579892[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x37d8765", + "lines": [ + "warp 0x37d8765[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x112b1fa", + "lines": [ + "warp 0x112b1fa[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "5000394179" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12725c", + "lines": [ + "syscall[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x39b8a5", + "lines": [ + "warp 0x39b8a5[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x645edf", + "lines": [ + "warp 0x645edf[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x6493b5", + "lines": [ + "warp 0x6493b5[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x647e86", + "lines": [ + "warp 0x647e86[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x112b1fa", + "lines": [ + "warp 0x112b1fa[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "11560181487" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x210df2", + "lines": [ + "common_nsleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x213dc0", + "lines": [ + "__x64_sys_clock_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c39", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xecade", + "lines": [ + "__GI___clock_nanosleep[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xf9a26", + "lines": [ + "__GI___nanosleep[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x3145394", + "lines": [ + "warp 0x3145394[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x31a75c8", + "lines": [ + "warp 0x31a75c8[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x112b1fa", + "lines": [ + "warp 0x112b1fa[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "8002127391" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5df76", + "lines": [ + "g_main_loop_run[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x578f", + "lines": [ + "at-spi2-registryd 0x578f[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5974", + "lines": [ + "at-spi2-registryd 0x5974[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + } + ], + "values": "2103488839" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x36447", + "lines": [ + "XQueryPointer[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0xbbdb", + "lines": [ + "at-spi2-registryd 0xbbdb[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0xc734", + "lines": [ + "at-spi2-registryd 0xc734[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0xd628", + "lines": [ + "at-spi2-registryd 0xd628[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5df76", + "lines": [ + "g_main_loop_run[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x578f", + "lines": [ + "at-spi2-registryd 0x578f[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5974", + "lines": [ + "at-spi2-registryd 0x5974[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + } + ], + "values": "13368" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122acfc", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122327b", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5df76", + "lines": [ + "g_main_loop_run[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x578f", + "lines": [ + "at-spi2-registryd 0x578f[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5974", + "lines": [ + "at-spi2-registryd 0x5974[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + } + ], + "values": "63156" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xdedc", + "lines": [ + "xcb_wait_for_reply64[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x4662c", + "lines": [ + "_XReply[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46aa4", + "lines": [ + "XSync[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46b3e", + "lines": [ + "libX11.so.6.4.0 0x46b3e[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x364b2", + "lines": [ + "XQueryPointer[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0xbbdb", + "lines": [ + "at-spi2-registryd 0xbbdb[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0xc734", + "lines": [ + "at-spi2-registryd 0xc734[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0xd628", + "lines": [ + "at-spi2-registryd 0xd628[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5df76", + "lines": [ + "g_main_loop_run[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x578f", + "lines": [ + "at-spi2-registryd 0x578f[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x5974", + "lines": [ + "at-spi2-registryd 0x5974[]@:0" + ], + "mapping": "0x4000-0xe000@0x4000 at-spi2-registryd(ecc6f2a68494bbbad837b9b2039e5f5e9f0948e2)" + } + ], + "values": "793268194" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a006", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x26cb8", + "lines": [ + "dbus-daemon 0x26cb8[]@:0" + ], + "mapping": "0x9000-0x2e000@0x9000 dbus-daemon(8d8db6f73d32f1f9b606098e67032f9db787e638)" + }, + { + "address": "0xcae8", + "lines": [ + "dbus-daemon 0xcae8[]@:0" + ], + "mapping": "0x9000-0x2e000@0x9000 dbus-daemon(8d8db6f73d32f1f9b606098e67032f9db787e638)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xeb34", + "lines": [ + "dbus-daemon 0xeb34[]@:0" + ], + "mapping": "0x9000-0x2e000@0x9000 dbus-daemon(8d8db6f73d32f1f9b606098e67032f9db787e638)" + } + ], + "values": "10282678126" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "__futex_abstimed_wait_common64[]@:0", + "__futex_abstimed_wait_common[]@:0", + "__GI___futex_abstimed_wait_cancelable64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9b7dc", + "lines": [ + "__pthread_cond_wait_common[]@:0", + "___pthread_cond_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xe178b", + "lines": [ + "QWaitCondition::wait(QMutex*, QDeadlineTimer)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x21de1c", + "lines": [ + "libQt5Quick.so.5.15.13 0x21de1c[]@:0" + ], + "mapping": "0x115000-0x43f000@0x115000 libQt5Quick.so.5.15.13(22bb8c165c30c255c3c952b19357f07323da66e0)" + }, + { + "address": "0x28f462", + "lines": [ + "QQuickWindow::event(QEvent*)[]@:0" + ], + "mapping": "0x115000-0x43f000@0x115000 libQt5Quick.so.5.15.13(22bb8c165c30c255c3c952b19357f07323da66e0)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x133ecb", + "lines": [ + "QPlatformWindow::windowEvent(QEvent*)[]@:0" + ], + "mapping": "0xe2000-0x5f7000@0xe2000 libQt5Gui.so.5.15.13(c6cdbf039da13141bbafbf2570e6cd4e97997262)" + }, + { + "address": "0x173490", + "lines": [ + "QApplication::notify(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334f10", + "lines": [ + "libQt5Core.so.5.15.13 0x334f10[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2aaa2", + "lines": [ + "plasmashell 0x2aaa2[]@:0" + ], + "mapping": "0x22000-0x96000@0x22000 plasmashell(bed1a3f4c3702c5c321c0719a165f6d63eb962da)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2abc4", + "lines": [ + "plasmashell 0x2abc4[]@:0" + ], + "mapping": "0x22000-0x96000@0x22000 plasmashell(bed1a3f4c3702c5c321c0719a165f6d63eb962da)" + } + ], + "values": "123373" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503e45", + "lines": [ + "do_select[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505e05", + "lines": [ + "core_sys_select[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x506328", + "lines": [ + "do_pselect.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5064bc", + "lines": [ + "__x64_sys_pselect6[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63cc", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12603e", + "lines": [ + "pselect64_syscall[]@:0", + "__pselect[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x401b", + "lines": [ + "libusbmuxd-2.0.so.6.0.0 0x401b[]@:0" + ], + "mapping": "0x2000-0x8000@0x2000 libusbmuxd-2.0.so.6.0.0(8ab11ad1b4239dd92c41b3fa5c1a23d7bd39883a)" + }, + { + "address": "0x4d44", + "lines": [ + "libusbmuxd-2.0.so.6.0.0 0x4d44[]@:0" + ], + "mapping": "0x2000-0x8000@0x2000 libusbmuxd-2.0.so.6.0.0(8ab11ad1b4239dd92c41b3fa5c1a23d7bd39883a)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "22021801087" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b159", + "lines": [ + "__cond_resched[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x509462", + "lines": [ + "dput[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f3cc5", + "lines": [ + "path_put[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4ebfd4", + "lines": [ + "vfs_statx[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4ecbb9", + "lines": [ + "vfs_fstatat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4ecc43", + "lines": [ + "__do_sys_newfstatat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4eccbb", + "lines": [ + "__x64_sys_newfstatat[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72e1", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1173bd", + "lines": [ + "fstatat64_time64_stat[]@:0", + "__GI___fstatat64[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xe146a", + "lines": [ + "__tzfile_read[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xe079b", + "lines": [ + "tzset_internal[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xe10d2", + "lines": [ + "__tzset[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcedbe", + "lines": [ + "qTzSet()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x1afac2", + "lines": [ + "libQt5Core.so.5.15.13 0x1afac2[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x1b1e5c", + "lines": [ + "QDateTime::setMSecsSinceEpoch(long long)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x1b3e7a", + "lines": [ + "QDateTime::fromMSecsSinceEpoch(long long, Qt::TimeSpec, int)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x1b4292", + "lines": [ + "QDateTime::currentDateTime()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x1b4349", + "lines": [ + "QTime::currentTime()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x66007", + "lines": [ + "libKF5Plasma.so.5.115.0 0x66007[]@:0" + ], + "mapping": "0x26000-0x9d000@0x26000 libKF5Plasma.so.5.115.0(46bcf321d56abe4511d7d40deed64213277ceffc)" + }, + { + "address": "0x66710", + "lines": [ + "libKF5Plasma.so.5.115.0 0x66710[]@:0" + ], + "mapping": "0x26000-0x9d000@0x26000 libKF5Plasma.so.5.115.0(46bcf321d56abe4511d7d40deed64213277ceffc)" + }, + { + "address": "0x30624a", + "lines": [ + "QObject::event(QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "QApplicationPrivate::notify_helper(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "QCoreApplication::notifyInternal2(QObject*, QEvent*)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "QTimerInfoList::activateTimers()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334f10", + "lines": [ + "libQt5Core.so.5.15.13 0x334f10[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2aaa2", + "lines": [ + "plasmashell 0x2aaa2[]@:0" + ], + "mapping": "0x22000-0x96000@0x22000 plasmashell(bed1a3f4c3702c5c321c0719a165f6d63eb962da)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2abc4", + "lines": [ + "plasmashell 0x2abc4[]@:0" + ], + "mapping": "0x22000-0x96000@0x22000 plasmashell(bed1a3f4c3702c5c321c0719a165f6d63eb962da)" + } + ], + "values": "4636367274" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2aaa2", + "lines": [ + "plasmashell 0x2aaa2[]@:0" + ], + "mapping": "0x22000-0x96000@0x22000 plasmashell(bed1a3f4c3702c5c321c0719a165f6d63eb962da)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2abc4", + "lines": [ + "plasmashell 0x2abc4[]@:0" + ], + "mapping": "0x22000-0x96000@0x22000 plasmashell(bed1a3f4c3702c5c321c0719a165f6d63eb962da)" + } + ], + "values": "10467257321" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x120e6d4", + "lines": [ + "warp 0x120e6d4[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x120f1ae", + "lines": [ + "warp 0x120f1ae[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x1212b7d", + "lines": [ + "warp 0x1212b7d[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x121ab5f", + "lines": [ + "warp 0x121ab5f[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x121a161", + "lines": [ + "warp 0x121a161[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x1222174", + "lines": [ + "warp 0x1222174[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x121909b", + "lines": [ + "warp 0x121909b[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x120858a", + "lines": [ + "warp 0x120858a[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x1202953", + "lines": [ + "warp 0x1202953[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x1205b70", + "lines": [ + "warp 0x1205b70[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x121f352", + "lines": [ + "warp 0x121f352[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x121f5d5", + "lines": [ + "warp 0x121f5d5[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x112b1fa", + "lines": [ + "warp 0x112b1fa[]@:0" + ], + "mapping": "0x351000-0x4151000@0x351000 warp(bc0a5176ba2fa2c6b4c4f8f520cae94d541b8387)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7101786316" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x8391b", + "lines": [ + "sd_event_wait[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x84fda", + "lines": [ + "sd_event_run[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8516e", + "lines": [ + "sd_event_loop[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x3fc44", + "lines": [ + "fcitx::EventLoop::exec()[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x46a20", + "lines": [ + "fcitx::Instance::exec()[]@:0" + ], + "mapping": "0x26000-0xb3000@0x26000 libFcitx5Core.so.5.1.7(250d0e32f539bcba6ba9dc09f9b82319fedea5ed)" + }, + { + "address": "0xff70", + "lines": [ + "fcitx5 0xff70[]@:0" + ], + "mapping": "0x9000-0x46000@0x9000 fcitx5(e8d7b71d46f9c22ca2d79372a504c83ad0f8f9bb)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x113e4", + "lines": [ + "fcitx5 0x113e4[]@:0" + ], + "mapping": "0x9000-0x46000@0x9000 fcitx5(e8d7b71d46f9c22ca2d79372a504c83ad0f8f9bb)" + } + ], + "values": "3630566559" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x8391b", + "lines": [ + "sd_event_wait[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x84fda", + "lines": [ + "sd_event_run[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8516e", + "lines": [ + "sd_event_loop[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x3fc44", + "lines": [ + "fcitx::EventLoop::exec()[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x30095", + "lines": [ + "libxcb.so 0x30095[]@:0" + ], + "mapping": "0x9000-0x35000@0x9000 libxcb.so(98ddfab7d19bfe8a1e2ccb81c898d1f42b2e92fb)" + }, + { + "address": "0xecdb3", + "lines": [ + "libstdc++.so.6.0.33 0xecdb3[]@:0" + ], + "mapping": "0x9d000-0x1e5000@0x9d000 libstdc++.so.6.0.33(ca77dae775ec87540acd7218fa990c40d1c94ab1)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "4042386775" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe3ae", + "lines": [ + "xcb_request_check[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x675e", + "lines": [ + "libxcb-imdkit.so.1.0.6 0x675e[]@:0" + ], + "mapping": "0x3000-0x19000@0x3000 libxcb-imdkit.so.1.0.6(da06e0be2db777e4921148250ff1aa550b2bd5ad)" + }, + { + "address": "0x68fb", + "lines": [ + "libxcb-imdkit.so.1.0.6 0x68fb[]@:0" + ], + "mapping": "0x3000-0x19000@0x3000 libxcb-imdkit.so.1.0.6(da06e0be2db777e4921148250ff1aa550b2bd5ad)" + }, + { + "address": "0x94f7", + "lines": [ + "libxcb-imdkit.so.1.0.6 0x94f7[]@:0" + ], + "mapping": "0x3000-0x19000@0x3000 libxcb-imdkit.so.1.0.6(da06e0be2db777e4921148250ff1aa550b2bd5ad)" + }, + { + "address": "0xc3ea", + "lines": [ + "xcb_im_filter_event[]@:0" + ], + "mapping": "0x3000-0x19000@0x3000 libxcb-imdkit.so.1.0.6(da06e0be2db777e4921148250ff1aa550b2bd5ad)" + }, + { + "address": "0x9690", + "lines": [ + "libxim.so 0x9690[]@:0" + ], + "mapping": "0x5000-0xd000@0x5000 libxim.so(f70bb64c4bfa82ba38a8308a114ec677326a007b)" + }, + { + "address": "0x27aaa", + "lines": [ + "libxcb.so 0x27aaa[]@:0" + ], + "mapping": "0x9000-0x35000@0x9000 libxcb.so(98ddfab7d19bfe8a1e2ccb81c898d1f42b2e92fb)" + }, + { + "address": "0x4b3dd", + "lines": [ + "libFcitx5Utils.so.5.1.7 0x4b3dd[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x4175e", + "lines": [ + "libFcitx5Utils.so.5.1.7 0x4175e[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x8333c", + "lines": [ + "libsystemd.so.0.38.0 0x8333c[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8364c", + "lines": [ + "sd_event_dispatch[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x84f47", + "lines": [ + "sd_event_run[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8516e", + "lines": [ + "sd_event_loop[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x3fc44", + "lines": [ + "fcitx::EventLoop::exec()[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x46a20", + "lines": [ + "fcitx::Instance::exec()[]@:0" + ], + "mapping": "0x26000-0xb3000@0x26000 libFcitx5Core.so.5.1.7(250d0e32f539bcba6ba9dc09f9b82319fedea5ed)" + }, + { + "address": "0xff70", + "lines": [ + "fcitx5 0xff70[]@:0" + ], + "mapping": "0x9000-0x46000@0x9000 fcitx5(e8d7b71d46f9c22ca2d79372a504c83ad0f8f9bb)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x113e4", + "lines": [ + "fcitx5 0x113e4[]@:0" + ], + "mapping": "0x9000-0x46000@0x9000 fcitx5(e8d7b71d46f9c22ca2d79372a504c83ad0f8f9bb)" + } + ], + "values": "563672355" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xde6d", + "lines": [ + "xcb_wait_for_reply[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xbe6d", + "lines": [ + "libxcb-imdkit.so.1.0.6 0xbe6d[]@:0" + ], + "mapping": "0x3000-0x19000@0x3000 libxcb-imdkit.so.1.0.6(da06e0be2db777e4921148250ff1aa550b2bd5ad)" + }, + { + "address": "0xc3cd", + "lines": [ + "xcb_im_filter_event[]@:0" + ], + "mapping": "0x3000-0x19000@0x3000 libxcb-imdkit.so.1.0.6(da06e0be2db777e4921148250ff1aa550b2bd5ad)" + }, + { + "address": "0x9690", + "lines": [ + "libxim.so 0x9690[]@:0" + ], + "mapping": "0x5000-0xd000@0x5000 libxim.so(f70bb64c4bfa82ba38a8308a114ec677326a007b)" + }, + { + "address": "0x27aaa", + "lines": [ + "libxcb.so 0x27aaa[]@:0" + ], + "mapping": "0x9000-0x35000@0x9000 libxcb.so(98ddfab7d19bfe8a1e2ccb81c898d1f42b2e92fb)" + }, + { + "address": "0x4b3dd", + "lines": [ + "libFcitx5Utils.so.5.1.7 0x4b3dd[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x4175e", + "lines": [ + "libFcitx5Utils.so.5.1.7 0x4175e[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x8333c", + "lines": [ + "libsystemd.so.0.38.0 0x8333c[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8364c", + "lines": [ + "sd_event_dispatch[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x84f47", + "lines": [ + "sd_event_run[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8516e", + "lines": [ + "sd_event_loop[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x3fc44", + "lines": [ + "fcitx::EventLoop::exec()[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x46a20", + "lines": [ + "fcitx::Instance::exec()[]@:0" + ], + "mapping": "0x26000-0xb3000@0x26000 libFcitx5Core.so.5.1.7(250d0e32f539bcba6ba9dc09f9b82319fedea5ed)" + }, + { + "address": "0xff70", + "lines": [ + "fcitx5 0xff70[]@:0" + ], + "mapping": "0x9000-0x46000@0x9000 fcitx5(e8d7b71d46f9c22ca2d79372a504c83ad0f8f9bb)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x113e4", + "lines": [ + "fcitx5 0x113e4[]@:0" + ], + "mapping": "0x9000-0x46000@0x9000 fcitx5(e8d7b71d46f9c22ca2d79372a504c83ad0f8f9bb)" + } + ], + "values": "1518175878" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98f5f", + "lines": [ + "futex_wait[]@:0", + "__GI___lll_lock_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa00f0", + "lines": [ + "lll_mutex_lock_optimized[]@:0", + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcfcc", + "lines": [ + "libxcb.so.1.1.0 0xcfcc[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x27264", + "lines": [ + "libxcb.so 0x27264[]@:0" + ], + "mapping": "0x9000-0x35000@0x9000 libxcb.so(98ddfab7d19bfe8a1e2ccb81c898d1f42b2e92fb)" + }, + { + "address": "0x27679", + "lines": [ + "libxcb.so 0x27679[]@:0" + ], + "mapping": "0x9000-0x35000@0x9000 libxcb.so(98ddfab7d19bfe8a1e2ccb81c898d1f42b2e92fb)" + }, + { + "address": "0x4175e", + "lines": [ + "libFcitx5Utils.so.5.1.7 0x4175e[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x8333c", + "lines": [ + "libsystemd.so.0.38.0 0x8333c[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8364c", + "lines": [ + "sd_event_dispatch[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x84f47", + "lines": [ + "sd_event_run[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8516e", + "lines": [ + "sd_event_loop[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x3fc44", + "lines": [ + "fcitx::EventLoop::exec()[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x30095", + "lines": [ + "libxcb.so 0x30095[]@:0" + ], + "mapping": "0x9000-0x35000@0x9000 libxcb.so(98ddfab7d19bfe8a1e2ccb81c898d1f42b2e92fb)" + }, + { + "address": "0xecdb3", + "lines": [ + "libstdc++.so.6.0.33 0xecdb3[]@:0" + ], + "mapping": "0x9d000-0x1e5000@0x9d000 libstdc++.so.6.0.33(ca77dae775ec87540acd7218fa990c40d1c94ab1)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "106882" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8c9", + "lines": [ + "libxcb.so.1.1.0 0xc8c9[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xceef", + "lines": [ + "libxcb.so.1.1.0 0xceef[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xde6d", + "lines": [ + "xcb_wait_for_reply[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x785a", + "lines": [ + "libxim.so 0x785a[]@:0" + ], + "mapping": "0x5000-0xd000@0x5000 libxim.so(f70bb64c4bfa82ba38a8308a114ec677326a007b)" + }, + { + "address": "0x9489", + "lines": [ + "libxcb-imdkit.so.1.0.6 0x9489[]@:0" + ], + "mapping": "0x3000-0x19000@0x3000 libxcb-imdkit.so.1.0.6(da06e0be2db777e4921148250ff1aa550b2bd5ad)" + }, + { + "address": "0xc3ea", + "lines": [ + "xcb_im_filter_event[]@:0" + ], + "mapping": "0x3000-0x19000@0x3000 libxcb-imdkit.so.1.0.6(da06e0be2db777e4921148250ff1aa550b2bd5ad)" + }, + { + "address": "0x9690", + "lines": [ + "libxim.so 0x9690[]@:0" + ], + "mapping": "0x5000-0xd000@0x5000 libxim.so(f70bb64c4bfa82ba38a8308a114ec677326a007b)" + }, + { + "address": "0x27aaa", + "lines": [ + "libxcb.so 0x27aaa[]@:0" + ], + "mapping": "0x9000-0x35000@0x9000 libxcb.so(98ddfab7d19bfe8a1e2ccb81c898d1f42b2e92fb)" + }, + { + "address": "0x4b3dd", + "lines": [ + "libFcitx5Utils.so.5.1.7 0x4b3dd[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x4175e", + "lines": [ + "libFcitx5Utils.so.5.1.7 0x4175e[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x8333c", + "lines": [ + "libsystemd.so.0.38.0 0x8333c[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8364c", + "lines": [ + "sd_event_dispatch[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x84f47", + "lines": [ + "sd_event_run[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x8516e", + "lines": [ + "sd_event_loop[]@:0" + ], + "mapping": "0x16000-0xa5000@0x16000 libsystemd.so.0.38.0(b1d2f1055cbf6c1302cd1fc9df4026b7063b4432)" + }, + { + "address": "0x3fc44", + "lines": [ + "fcitx::EventLoop::exec()[]@:0" + ], + "mapping": "0x27000-0x75000@0x27000 libFcitx5Utils.so.5.1.7(0b081698f9e8c0880656d7ac7394e40e68566e21)" + }, + { + "address": "0x46a20", + "lines": [ + "fcitx::Instance::exec()[]@:0" + ], + "mapping": "0x26000-0xb3000@0x26000 libFcitx5Core.so.5.1.7(250d0e32f539bcba6ba9dc09f9b82319fedea5ed)" + }, + { + "address": "0xff70", + "lines": [ + "fcitx5 0xff70[]@:0" + ], + "mapping": "0x9000-0x46000@0x9000 fcitx5(e8d7b71d46f9c22ca2d79372a504c83ad0f8f9bb)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x113e4", + "lines": [ + "fcitx5 0x113e4[]@:0" + ], + "mapping": "0x9000-0x46000@0x9000 fcitx5(e8d7b71d46f9c22ca2d79372a504c83ad0f8f9bb)" + } + ], + "values": "2646946197" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x1e5e4", + "lines": [ + "kwalletd5 0x1e5e4[]@:0" + ], + "mapping": "0x13000-0x4f000@0x13000 kwalletd5(71dae71dbe3a81ef6de2f9fb42c18e78f37b6a02)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1f5f4", + "lines": [ + "kwalletd5 0x1f5f4[]@:0" + ], + "mapping": "0x13000-0x4f000@0x13000 kwalletd5(71dae71dbe3a81ef6de2f9fb42c18e78f37b6a02)" + } + ], + "values": "792986261" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16e6082", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16a3ac6", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x1676b54", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x1676c88", + "lines": [ + "runtime.notetsleep[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16b73a8", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16ada94", + "lines": [ + "runtime.mstart1[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16ad9d5", + "lines": [ + "runtime.mstart0[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16e2164", + "lines": [ + "runtime.mstart[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + } + ], + "values": "4999941442" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16e6082", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16a3a4f", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x1676a26", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16af38b", + "lines": [ + "runtime.stopm[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16b0efe", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16b1fd0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16b25ab", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16e21ef", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + } + ], + "values": "5003865591" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16e5a96", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16b7284", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16b7284", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16ada94", + "lines": [ + "runtime.mstart1[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16ad9d5", + "lines": [ + "runtime.mstart0[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16e2164", + "lines": [ + "runtime.mstart[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + } + ], + "values": "15071074967" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5555be", + "lines": [ + "do_epoll_pwait.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5564a0", + "lines": [ + "__x64_sys_epoll_pwait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x645f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x166bded", + "lines": [ + "runtime/internal/syscall.Syscall6[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x166bd64", + "lines": [ + "runtime/internal/syscall.EpollWait[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16a3751", + "lines": [ + "runtime.netpoll[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16b0a65", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16b1fd0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16b25ab", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + }, + { + "address": "0x16e21ef", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0x1665000-0x34ed000@0x1665000 dockerd(9a8d4e745aeca9e124e342ce444408f1987fc8d8)" + } + ], + "values": "5003843020" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x7a84", + "lines": [ + "org_kde_powerdevil 0x7a84[]@:0" + ], + "mapping": "0x6000-0xe000@0x6000 org_kde_powerdevil(509b43ae1dddbd791d2df3c580e62bd7d2123b98)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x84c4", + "lines": [ + "org_kde_powerdevil 0x84c4[]@:0" + ], + "mapping": "0x6000-0xe000@0x6000 org_kde_powerdevil(509b43ae1dddbd791d2df3c580e62bd7d2123b98)" + } + ], + "values": "2117431344" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x7fbe", + "lines": [ + "kded5 0x7fbe[]@:0" + ], + "mapping": "0x6000-0x10000@0x6000 kded5(cf7ec8106336bf7e9b34a0be779c53c61309ebce)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x8644", + "lines": [ + "kded5 0x8644[]@:0" + ], + "mapping": "0x6000-0x10000@0x6000 kded5(cf7ec8106336bf7e9b34a0be779c53c61309ebce)" + } + ], + "values": "286131820" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5555be", + "lines": [ + "do_epoll_pwait.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5564a0", + "lines": [ + "__x64_sys_epoll_pwait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x645f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd22c4d", + "lines": [ + "runtime/internal/syscall.Syscall6[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd22bc4", + "lines": [ + "runtime/internal/syscall.EpollWait[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd59cd1", + "lines": [ + "runtime.netpoll[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd67285", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd687f0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd68dcb", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd98e8f", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + } + ], + "values": "22076571569" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12422ac", + "lines": [ + "do_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20667e", + "lines": [ + "hrtimer_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x206a2f", + "lines": [ + "__x64_sys_nanosleep[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5d8f", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd9c736", + "lines": [ + "runtime.usleep[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd6daa4", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd6daa4", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd642b4", + "lines": [ + "runtime.mstart1[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd641f5", + "lines": [ + "runtime.mstart0[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd98e04", + "lines": [ + "runtime.mstart[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + } + ], + "values": "30819069863" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd9cd22", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd59fcf", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd2d866", + "lines": [ + "runtime.notesleep[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd65bab", + "lines": [ + "runtime.stopm[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd6771e", + "lines": [ + "runtime.findRunnable[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd687f0", + "lines": [ + "runtime.schedule[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd68dcb", + "lines": [ + "runtime.park_m[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd98e8f", + "lines": [ + "runtime.mcall[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + } + ], + "values": "32568298675" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2256d3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225eb4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225fb3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x221c84", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222549", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71a6", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd9cd22", + "lines": [ + "runtime.futex[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd5a046", + "lines": [ + "runtime.futexsleep[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd2d994", + "lines": [ + "runtime.notetsleep_internal[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd2dac8", + "lines": [ + "runtime.notetsleep[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd6dbc8", + "lines": [ + "runtime.sysmon[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd642b4", + "lines": [ + "runtime.mstart1[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd641f5", + "lines": [ + "runtime.mstart0[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + }, + { + "address": "0xd98e04", + "lines": [ + "runtime.mstart[]@:0" + ], + "mapping": "0xd1c000-0x1fed000@0xd1c000 containerd(f40c6f4ad281bb978da8555ee45ce101c5cbe43c)" + } + ], + "values": "9702763659" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2c1aa", + "lines": [ + "xdg-desktop-portal-kde 0x2c1aa[]@:0" + ], + "mapping": "0x25000-0x8d000@0x25000 xdg-desktop-portal-kde(3a18f212936c34aaf2bc2da64c3508d0faf941bc)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2cef4", + "lines": [ + "xdg-desktop-portal-kde 0x2cef4[]@:0" + ], + "mapping": "0x25000-0x8d000@0x25000 xdg-desktop-portal-kde(3a18f212936c34aaf2bc2da64c3508d0faf941bc)" + } + ], + "values": "792946882" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b493", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7d12", + "lines": [ + "libavahi-common.so.3.5.4 0x7d12[]@:0" + ], + "mapping": "0x3000-0x9000@0x3000 libavahi-common.so.3.5.4(5a360a855e434e44c1cf24db90877efe2c411646)" + }, + { + "address": "0x7f07", + "lines": [ + "libavahi-common.so.3.5.4 0x7f07[]@:0" + ], + "mapping": "0x3000-0x9000@0x3000 libavahi-common.so.3.5.4(5a360a855e434e44c1cf24db90877efe2c411646)" + }, + { + "address": "0x8bbc", + "lines": [ + "avahi-daemon 0x8bbc[]@:0" + ], + "mapping": "0x6000-0x1a000@0x6000 avahi-daemon(5e7d767030cd5f5007425ff954ab2f5b42acd276)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x92f4", + "lines": [ + "avahi-daemon 0x92f4[]@:0" + ], + "mapping": "0x6000-0x1a000@0x6000 avahi-daemon(5e7d767030cd5f5007425ff954ab2f5b42acd276)" + } + ], + "values": "2245440499" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xa328", + "lines": [ + "polkit-kde-authentication-agent-1 0xa328[]@:0" + ], + "mapping": "0x8000-0x12000@0x8000 polkit-kde-authentication-agent-1(f5ec3f187daa0a19c3fc1102b6a7a30a7b9f04aa)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa494", + "lines": [ + "polkit-kde-authentication-agent-1 0xa494[]@:0" + ], + "mapping": "0x8000-0x12000@0x8000 polkit-kde-authentication-agent-1(f5ec3f187daa0a19c3fc1102b6a7a30a7b9f04aa)" + } + ], + "values": "792999670" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xa996", + "lines": [ + "DiscoverNotifier 0xa996[]@:0" + ], + "mapping": "0x7000-0x11000@0x7000 DiscoverNotifier(12bb9a00962d795b0f7500ca6e7c8cd866c6c1da)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xab54", + "lines": [ + "DiscoverNotifier 0xab54[]@:0" + ], + "mapping": "0x7000-0x11000@0x7000 DiscoverNotifier(12bb9a00962d795b0f7500ca6e7c8cd866c6c1da)" + } + ], + "values": "3362559067" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x289a", + "lines": [ + "kglobalaccel5 0x289a[]@:0" + ], + "mapping": "0x2000-0x3000@0x2000 kglobalaccel5(88eb078fcb131903ec923637e6d908328321b0b8)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2964", + "lines": [ + "kglobalaccel5 0x2964[]@:0" + ], + "mapping": "0x2000-0x3000@0x2000 kglobalaccel5(88eb078fcb131903ec923637e6d908328321b0b8)" + } + ], + "values": "2049180804" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x611b", + "lines": [ + "rtkit-daemon 0x611b[]@:0" + ], + "mapping": "0x3000-0xa000@0x3000 rtkit-daemon(b68f18433f2892fe8f8b9b1ac25ad1c09931817a)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7499965823" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7d68", + "lines": [ + "rtkit-daemon 0x7d68[]@:0" + ], + "mapping": "0x3000-0xa000@0x3000 rtkit-daemon(b68f18433f2892fe8f8b9b1ac25ad1c09931817a)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "7499945941" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0xb8c4", + "lines": [ + "kaccess 0xb8c4[]@:0" + ], + "mapping": "0x8000-0x16000@0x8000 kaccess(0924f42b82608b743918588f9c87cb58f7ff3516)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xba74", + "lines": [ + "kaccess 0xba74[]@:0" + ], + "mapping": "0x8000-0x16000@0x8000 kaccess(0924f42b82608b743918588f9c87cb58f7ff3516)" + } + ], + "values": "792867271" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x555441", + "lines": [ + "ep_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55557a", + "lines": [ + "do_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55623e", + "lines": [ + "__x64_sys_epoll_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6d6e", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a041", + "lines": [ + "epoll_wait[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x17137", + "lines": [ + "libspa-support.so 0x17137[]@:0" + ], + "mapping": "0x4000-0x1a000@0x4000 libspa-support.so(edd98341e8c50317e23c049001ede29a5129a695)" + }, + { + "address": "0x8c58", + "lines": [ + "libspa-support.so 0x8c58[]@:0" + ], + "mapping": "0x4000-0x1a000@0x4000 libspa-support.so(edd98341e8c50317e23c049001ede29a5129a695)" + }, + { + "address": "0x6482a", + "lines": [ + "pw_main_loop_run[]@:0" + ], + "mapping": "0x33000-0x9a000@0x33000 libpipewire-0.3.so.0.1005.0(3a670e015fb7e58a8f3afcd936c81cc872fd9a80)" + }, + { + "address": "0x15f5", + "lines": [ + "pipewire 0x15f5[]@:0" + ], + "mapping": "0x1000-0x2000@0x1000 pipewire(dddb37be3617730e254fa4133cd1d327f915c6f5)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1794", + "lines": [ + "pipewire 0x1794[]@:0" + ], + "mapping": "0x1000-0x2000@0x1000 pipewire(dddb37be3617730e254fa4133cd1d327f915c6f5)" + } + ], + "values": "1500932141" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5caa8", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5caa8[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x8bc81", + "lines": [ + "libglib-2.0.so.0.8000.0 0x8bc81[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "__clone[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "4001942424" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503e45", + "lines": [ + "do_select[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505e05", + "lines": [ + "core_sys_select[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x506328", + "lines": [ + "do_pselect.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5064de", + "lines": [ + "__x64_sys_pselect6[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63cc", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x126c3d", + "lines": [ + "__GI___select[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x21aeb", + "lines": [ + "wpa_supplicant 0x21aeb[]@:0" + ], + "mapping": "0x1b000-0x261000@0x1b000 wpa_supplicant(2a69ffd662dafa5a72aa9237aaecb03e479b42d9)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x22694", + "lines": [ + "wpa_supplicant 0x22694[]@:0" + ], + "mapping": "0x1b000-0x261000@0x1b000 wpa_supplicant(2a69ffd662dafa5a72aa9237aaecb03e479b42d9)" + } + ], + "values": "10009689874" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd534", + "lines": [ + "libusb-1.0.so.0.4.0 0xd534[]@:0" + ], + "mapping": "0x4000-0x14000@0x4000 libusb-1.0.so.0.4.0(47533e904f636332fab2f1ca8847ad7759ed19ec)" + }, + { + "address": "0x1077f", + "lines": [ + "libusb_handle_events_timeout_completed[]@:0" + ], + "mapping": "0x4000-0x14000@0x4000 libusb-1.0.so.0.4.0(47533e904f636332fab2f1ca8847ad7759ed19ec)" + }, + { + "address": "0x834d", + "lines": [ + "libgusb.so.2.0.10 0x834d[]@:0" + ], + "mapping": "0x6000-0x13000@0x6000 libgusb.so.2.0.10(cedc0e1be54ad02878b5bb8f54968d548014d4c6)" + }, + { + "address": "0x8bc81", + "lines": [ + "libglib-2.0.so.0.8000.0 0x8bc81[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2002003833" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b493", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x34b58", + "lines": [ + "vmware-authdlauncher 0x34b58[]@:0" + ], + "mapping": "0x1a000-0x98000@0x1a000 vmware-authdlauncher(ce252c6562966fed8e2081986baf5db451827533)" + }, + { + "address": "0x35423", + "lines": [ + "vmware-authdlauncher 0x35423[]@:0" + ], + "mapping": "0x1a000-0x98000@0x1a000 vmware-authdlauncher(ce252c6562966fed8e2081986baf5db451827533)" + }, + { + "address": "0x1bd86", + "lines": [ + "vmware-authdlauncher 0x1bd86[]@:0" + ], + "mapping": "0x1a000-0x98000@0x1a000 vmware-authdlauncher(ce252c6562966fed8e2081986baf5db451827533)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1be84", + "lines": [ + "vmware-authdlauncher 0x1be84[]@:0" + ], + "mapping": "0x1a000-0x98000@0x1a000 vmware-authdlauncher(ce252c6562966fed8e2081986baf5db451827533)" + } + ], + "values": "4003872947" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b024", + "lines": [ + "irqentry_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122b0b2", + "lines": [ + "irqentry_exit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1229578", + "lines": [ + "sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1400f8a", + "lines": [ + "asm_sysvec_reschedule_ipi[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9ffe0", + "lines": [ + "___pthread_mutex_lock[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xc8ec", + "lines": [ + "libxcb.so.1.1.0 0xc8ec[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0xe28b", + "lines": [ + "xcb_wait_for_event[]@:0" + ], + "mapping": "0xb000-0x1e000@0xb000 libxcb.so.1.1.0(16796503bce879b4d9697eb4fada10eeb6af4040)" + }, + { + "address": "0x74b9f", + "lines": [ + "libQt5XcbQpa.so.5.15.13 0x74b9f[]@:0" + ], + "mapping": "0x39000-0x110000@0x39000 libQt5XcbQpa.so.5.15.13(03a19e023af57550dcee7c99d4bb9691529eeb20)" + }, + { + "address": "0xdb673", + "lines": [ + "libQt5Core.so.5.15.13 0xdb673[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "2117298981" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x9106", + "lines": [ + "gmenudbusmenuproxy 0x9106[]@:0" + ], + "mapping": "0x7000-0x37000@0x7000 gmenudbusmenuproxy(ed8c38752053aade7ac972be8b45af5c4c99d945)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9454", + "lines": [ + "gmenudbusmenuproxy 0x9454[]@:0" + ], + "mapping": "0x7000-0x37000@0x7000 gmenudbusmenuproxy(ed8c38752053aade7ac972be8b45af5c4c99d945)" + } + ], + "values": "2076643746" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421a9", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5058fd", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "g_main_context_iteration[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "QEventDispatcherGlib::processEvents(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "QEventLoop::exec(QFlags)[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "QCoreApplication::exec()[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x39c4", + "lines": [ + "kscreen_backend_launcher 0x39c4[]@:0" + ], + "mapping": "0x3000-0x7000@0x3000 kscreen_backend_launcher(76a5cfba5adcf700c023c9fc566c3969063972a4)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x3ba4", + "lines": [ + "kscreen_backend_launcher 0x3ba4[]@:0" + ], + "mapping": "0x3000-0x7000@0x3000 kscreen_backend_launcher(76a5cfba5adcf700c023c9fc566c3969063972a4)" + } + ], + "values": "2117277448" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xbc66d", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc66d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5df76", + "lines": [ + "g_main_loop_run[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x40e4d", + "lines": [ + "NetworkManager 0x40e4d[]@:0" + ], + "mapping": "0x37000-0x2a7000@0x37000 NetworkManager(8173b4a250271e4759f73d00bce77cd46e743926)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x412e4", + "lines": [ + "NetworkManager 0x412e4[]@:0" + ], + "mapping": "0x37000-0x2a7000@0x37000 NetworkManager(8173b4a250271e4759f73d00bce77cd46e743926)" + } + ], + "values": "5522095143" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1241e84", + "lines": [ + "schedule_timeout[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22f4b", + "lines": [ + "iwl_trans_txq_send_hcmd_sync[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27367", + "lines": [ + "iwl_trans_txq_send_hcmd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22843", + "lines": [ + "iwl_trans_send_cmd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a197", + "lines": [ + "iwl_mvm_send_cmd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a2d8", + "lines": [ + "iwl_mvm_request_system_statistics[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ae17", + "lines": [ + "iwl_mvm_request_statistics[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6c09", + "lines": [ + "iwl_mvm_mac_sta_statistics[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb664", + "lines": [ + "drv_sta_statistics[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf162", + "lines": [ + "sta_set_sinfo[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31f77", + "lines": [ + "ieee80211_dump_station[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4444a", + "lines": [ + "nl80211_dump_station[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf93b46", + "lines": [ + "genl_dumpit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8db0f", + "lines": [ + "netlink_dump[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf901fa", + "lines": [ + "__netlink_dump_start[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf93c4b", + "lines": [ + "genl_family_rcv_msg_dumpit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf93de7", + "lines": [ + "genl_family_rcv_msg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf93f7b", + "lines": [ + "genl_rcv_msg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf92009", + "lines": [ + "netlink_rcv_skb[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf93077", + "lines": [ + "genl_rcv[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf91729", + "lines": [ + "netlink_unicast[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf91a93", + "lines": [ + "netlink_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec50fa", + "lines": [ + "____sys_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec85b9", + "lines": [ + "___sys_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec8748", + "lines": [ + "__sys_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xec87dc", + "lines": [ + "__x64_sys_sendmsg[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x571d", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12c03a", + "lines": [ + "__libc_sendmsg[]@:0", + "__libc_sendmsg[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x74f97", + "lines": [ + "NetworkManager 0x74f97[]@:0" + ], + "mapping": "0x37000-0x2a7000@0x37000 NetworkManager(8173b4a250271e4759f73d00bce77cd46e743926)" + }, + { + "address": "0x14aaad", + "lines": [ + "NetworkManager 0x14aaad[]@:0" + ], + "mapping": "0x37000-0x2a7000@0x37000 NetworkManager(8173b4a250271e4759f73d00bce77cd46e743926)" + }, + { + "address": "0x14b16e", + "lines": [ + "NetworkManager 0x14b16e[]@:0" + ], + "mapping": "0x37000-0x2a7000@0x37000 NetworkManager(8173b4a250271e4759f73d00bce77cd46e743926)" + }, + { + "address": "0x1c9de3", + "lines": [ + "NetworkManager 0x1c9de3[]@:0" + ], + "mapping": "0x37000-0x2a7000@0x37000 NetworkManager(8173b4a250271e4759f73d00bce77cd46e743926)" + }, + { + "address": "0x15aca", + "lines": [ + "libnm-device-plugin-wifi.so 0x15aca[]@:0" + ], + "mapping": "0xd000-0x3d000@0xd000 libnm-device-plugin-wifi.so(dc49a04418ddb4db1e4c2cf3843a2d656fc48acc)" + }, + { + "address": "0x15b9c", + "lines": [ + "libnm-device-plugin-wifi.so 0x15b9c[]@:0" + ], + "mapping": "0xd000-0x3d000@0xd000 libnm-device-plugin-wifi.so(dc49a04418ddb4db1e4c2cf3843a2d656fc48acc)" + }, + { + "address": "0x5e521", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5e521[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5d48d", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d48d[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5df76", + "lines": [ + "g_main_loop_run[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x40e4d", + "lines": [ + "NetworkManager 0x40e4d[]@:0" + ], + "mapping": "0x37000-0x2a7000@0x37000 NetworkManager(8173b4a250271e4759f73d00bce77cd46e743926)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x412e4", + "lines": [ + "NetworkManager 0x412e4[]@:0" + ], + "mapping": "0x37000-0x2a7000@0x37000 NetworkManager(8173b4a250271e4759f73d00bce77cd46e743926)" + } + ], + "values": "4159695898" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b493", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x6ddfa", + "lines": [ + "poll[]@:0", + "PollExecuteDevice[]@:0" + ], + "mapping": "0x2c000-0xcb000@0x2c000 vmware-usbarbitrator(73dfd4d99d51227bddbee0c3ef1af02cc85deac9)" + }, + { + "address": "0x6e7e4", + "lines": [ + "PollDefaultLoopTimeout[]@:0", + "PollDefaultLoopTimeout[]@:0" + ], + "mapping": "0x2c000-0xcb000@0x2c000 vmware-usbarbitrator(73dfd4d99d51227bddbee0c3ef1af02cc85deac9)" + }, + { + "address": "0x2d43f", + "lines": [ + "UsbArbMain[]@:0", + "main[]@:0" + ], + "mapping": "0x2c000-0xcb000@0x2c000 vmware-usbarbitrator(73dfd4d99d51227bddbee0c3ef1af02cc85deac9)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_impl[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2d84d", + "lines": [ + "vmware-usbarbitrator 0x2d84d[]@:0" + ], + "mapping": "0x2c000-0xcb000@0x2c000 vmware-usbarbitrator(73dfd4d99d51227bddbee0c3ef1af02cc85deac9)" + } + ], + "values": "3002971567" + }, + { + "locations": [ + { + "address": "0x14fbd0", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123ae62", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124212b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12421e2", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504c98", + "lines": [ + "do_poll.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x504f3e", + "lines": [ + "do_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x505976", + "lines": [ + "__x64_sys_poll[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a2c", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x122326e", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11b4cc", + "lines": [ + "__GI___poll[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x34565", + "lines": [ + "libpulse.so.0.24.2 0x34565[]@:0" + ], + "mapping": "0xc000-0x3d000@0xc000 libpulse.so.0.24.2(c382e5f73e13efe6f45c168f6b20289bd4902128)" + }, + { + "address": "0x1d6c3", + "lines": [ + "pa_mainloop_poll[]@:0" + ], + "mapping": "0xc000-0x3d000@0xc000 libpulse.so.0.24.2(c382e5f73e13efe6f45c168f6b20289bd4902128)" + }, + { + "address": "0x28192", + "lines": [ + "pa_mainloop_iterate[]@:0" + ], + "mapping": "0xc000-0x3d000@0xc000 libpulse.so.0.24.2(c382e5f73e13efe6f45c168f6b20289bd4902128)" + }, + { + "address": "0x28257", + "lines": [ + "pa_mainloop_run[]@:0" + ], + "mapping": "0xc000-0x3d000@0xc000 libpulse.so.0.24.2(c382e5f73e13efe6f45c168f6b20289bd4902128)" + }, + { + "address": "0x38770", + "lines": [ + "libpulse.so.0.24.2 0x38770[]@:0" + ], + "mapping": "0xc000-0x3d000@0xc000 libpulse.so.0.24.2(c382e5f73e13efe6f45c168f6b20289bd4902128)" + }, + { + "address": "0x5b3ea", + "lines": [ + "libpulsecommon-16.1.so 0x5b3ea[]@:0" + ], + "mapping": "0x12000-0x5c000@0x12000 libpulsecommon-16.1.so(54814b450b49a8cb47b8b93037621c91f233b86f)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__clone3[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "6003795695" + } + ], + "period": "1" +} \ No newline at end of file diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-offcpu.pb.bin b/pkg/test/integration/testdata/otel-ebpf-profiler-offcpu.pb.bin new file mode 100644 index 0000000000..7c3aeb0df5 Binary files /dev/null and b/pkg/test/integration/testdata/otel-ebpf-profiler-offcpu.pb.bin differ